Technical Article Template
Author
Josh Billings
Last Updated
7年前
License
Creative Commons CC BY 4.0
Abstract
This is an internal template used for technical articles
This is an internal template used for technical articles
% -----------------------------------Initialize Document----------------------------------------
\documentclass[12pt]{article}
\usepackage{textcomp}
\usepackage[headheight=12pt, headsep=0pt, nohead, nofoot]{geometry}
\usepackage{graphicx}
\usepackage{subfig}
\usepackage{multicol}
\usepackage{siunitx}
\usepackage{wrapfig}
\setlength{\footskip}{40pt}
\DeclareSIUnit\gauss{G}
\input{style/common.tex}
\input{style/scala.tex}
\lstset{frame=, basicstyle={\footnotesize\ttfamily}}
\graphicspath{ {images/} }
%-----------------------------------------Cover Page----------------------------------------
\begin{document}
\title{{\Huge Title {\large\linebreak\\}}{\Large Subtitle\linebreak\linebreak}}
%Details
\author{\\Name: Joshua S. Billings\\
EmployeeID: 101794\\
Department: Mechatronics\\\\
Aerotech Inc.\\
Pittsburgh, PA\\
Summer, 2017\\
\date{}
}
\maketitle
\thispagestyle{empty}
\vspace{25mm}
%-----------------------------------------ABSTRACT-------------------------------------
\begin{center}
{\large\bf{Abstract}}
\end{center}
Type the abstract here
\newpage
%-----------------------------------------Table of Contents-------------------------------------
\tableofcontents\label{toc}
\newpage
% -----------------------------------Section 1----------------------------------------
\section{Section 1}
\subsection{Subsection}
Content goes here
\subsection{Subsection}
Content goes here
\begin{figure}[ht]
\centering
\begin{minipage}[b]{0.4\textwidth}
\includegraphics[width=\textwidth]{images/example.png}
\caption{caption}
\end{minipage}
\hfill
\begin{minipage}[b]{0.4\textwidth}
\includegraphics[width=\textwidth]{images/example.png}
\caption{Caption}
\end{minipage}
\end{figure}
\subsection{Raspberry Pi}
Content goes here
\newpage
% -----------------------------------Section 2----------------------------------------
\section{Section 2}
Subtitle
\subsection{Section}
Content goes here
\begin{itemize}
\item \textbf{Listed} text
\item \textbf{Listed} text
\item \textbf{Listed} text
\end{itemize}
\subsection{Section}
Content goes here
\subsection{Section}
Content goes here
\subsubsection{Section}
Content goes here
\subsubsection{Section}
Content goes here
\subsubsection{Section}
Content goes here
\begin{figure}[ht]
\centering
\includegraphics[height=7cm]{images/example.png}
\caption{Caption}
\end{figure}
\subsubsection{Section}
Content goes here
\begin{scala}
code goes here
\end{scala}
\newpage
% -----------------------------------Section 3----------------------------------------
\section{Section 3}
\subsection{Section}
Content goes here
\subsection{Section}
Content goes here
\newpage
% -----------------------------------Appendix----------------------------------------
\section{Appendix}
\subsection{Appendix section}
Content goes here
\subsection{Appendix section}
Content goes here
\subsubsection*{Section not in table of contents}
Content goes here
\newpage
% -----------------------------------REFERENCE----------------------------------------
\begin{thebibliography}{9}
\bibitem{Erdos01} P. Erd\H os, \emph{A selection of problems and
results in combinatorics}, Recent trends in combinatorics (Matrahaza,
1995), Cambridge Univ. Press, Cambridge, 2001, pp. 1--6.
\end{thebibliography}
\end{document}