Thesis Template for North Dakota State University (NDSU)
作者
Aaron Feickert and Jonathan Totushek
最近上传
7 年前
许可
LaTeX Project Public License 1.3c
摘要
This is a sample template for preparing NDSU theses using the ndsu-thesis class.
This is a sample template for preparing NDSU theses using the ndsu-thesis class.
%% Please see http://texdoc.net/pkg/ndsu-thesis for full documentation and options
%% phd,ms-thesis,ms-paper,ma-thesis,ma-paper
\documentclass[ms-thesis]{ndsu-thesis}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\title{The Title of My M.S. Thesis}
\author{Samuel Quincy Student}
\date{April 2016}
\department{Mathematics}
\cchair{Prof. John Adams}
\cmembera{Prof. Abraham Lincoln}
\cmemberb{Prof. George Washington}
\approvaldate{15 April 2016}
\approver{Prof. James Garfield}
\abstract{This is the abstract for my thesis.}
\acknowledgements{I acknowledge people here.}
\dedication{This thesis is dedicated to my cat, Mr. Fluffles.}
\preface{You can put a preface here.}
\begin{document}
%% DO NOT USE \maketitle!!!
%% DO NOT USE \chapter!!!
\heading{The First Chapter}
This is the first chapter. Use \textit{blank lines} between paragraphs; never use \texttt{\\} to create new `paragraphs'!
This is a second paragraph.
\section{Introduction}
This is a section of my thesis.
\heading{The Second Chapter}
\section{Excellent results}
This is another section of my thesis.
\subsection{Minor results}
This is a subsection of my thesis.
\begin{table}[h]
\centering
\caption{Table captions go at the top of the table}
\begin{tabular}{rl}
Number & Month \\
\hline
1 & January \\
2 & February \\
3 & March
4
\end{tabular}
\end{table}
%% Uncomment these lines for a bibliography. Remember to upload your .bib file and update the file name here accordingly!
% \bibliographystyle{plain}
% \bibliography{my-bib-file}
\appendix %% For unnamed appendix
% \namedappendix{Appendix title} %% For named appendix
Note that this class does not support the use of multiple appendices.
I can include appendix material here. See Figure \ref{figure_a} below. Use \texttt{appendixfigure} or \texttt{appdixtable} in the Appendix.
\begin{appendixfigure}
\centering
You could include a figure here.
\caption{Figure captions go at the bottom of the figure}
\label{figure_a}
\end{appendixfigure}
\end{document}