AIT Thesis LaTeX Template
Author
Asian Institute of Technology
Last Updated
일 년 전
License
Creative Commons CC BY 4.0
Abstract
Thesis template in latex
\documentclass{aitthesis}
\usepackage{amsmath,amssymb}
\usepackage{multirow}
\usepackage{graphicx}
\usepackage{subfig}
\bibliographystyle{apacite}
\begin{document}
\pagenumbering{roman}
\addtocontents{toc}{~\hfill\textbf{Page}\par} %This adds the word Page on top of the table of content
\include{cover}
\include{declaration}
\include{acknowledgements}
\include{abstract}
\include{contents}
\include{loft}
\pagestyle{plain}
\pagenumbering{arabic}
\include{introduction}
\include{literature}
\include{methodology}
\include{results}
\include{conclusion}
\newpage
\phantomsection
\addcontentsline{toc}{chapter}{\bf REFERENCES}
\bibliography{references}
\newpage\pagestyle{plain}
\include{appendix}
\begin{table}
\caption{An example table in latex.}
\begin{center}
\begin{tabular}{l l}
\hline
Methods & Metric\\ \hline
Method A & 153.3 \\
Method B & 2.4 \\ \hline
\end{tabular}
\label{tab:monkey}
\end{center}
\small{\textit{Note.} Add notes here.}
\end{table}
\end{document}