csuebthesis-template
Author
Patrick Huang
Last Updated
před 3 lety
License
Creative Commons CC BY 4.0
Abstract
California State University, East Bay Master's thesis template
\documentclass{csuebthesis} % use option [indentfirst] to turn on first paragraph indentation
\usepackage{amsmath}
\usepackage[colorlinks=true]{hyperref} % enable hyperlinks in pdf
\usepackage{lipsum} % generate filler text for testing
% Set graphicspath if figures are in a different directory
\usepackage{graphicx}
%\graphicspath{ {figs/} }
% Bibliography settings
\usepackage[style=chem-acs,articletitle=true,doi=true]{biblatex} % ACS style
\addbibresource{refs.bib} % bibliography file
% Use Times New Roman fonts
\usepackage{fontspec}
\setmainfont{Times New Roman}
% Set title and signature page info
\title{THESIS TITLE (ALL-CAPS, ONE-LINE)}
\subtitle{CONTINUATION OF TWO-LINE TITLE}
\author{Author's Full Name}
\date{The end of the semester month/year your degree is awarded}
\degree{Name of Degree}
\committeeA{Committee Member 1 Name}
\committeeB{Committee Member 2 Name}
\committeeC{Committee Member 3 Name}
\begin{document}
% Start of thesis front matter
\frontmatter
% Title page
\maketitle
% Abstract
\begin{abstract}
\lipsum[1]
\end{abstract}
% Signature page
\makesignature
% Acknowledgements
\begin{acknowledgements}
\lipsum[1]
\end{acknowledgements}
% Table of contents, list of figures and tables
\tableofcontents
\listoffigures
\listoftables
% Start of main thesis body
\mainmatter
\chapter{Introduction}
This is a template for a Cal State East Bay Master's thesis. This is how to cite an article~\cite{reynoldsJCP82}\@. This is a book citation~\cite{miessler}\@. This is how to cite multiple references~\cite{reynoldsJCP82,ceperleyPRL90,miessler}\@.
\lipsum[1]
\chapter{Methodology}
\lipsum[1]
\section{Section heading}
\lipsum[2-5]
\section{Section heading}
\lipsum[6-10]
\chapter{Results}
\lipsum[1]
\section{Section heading}
\lipsum[2-3]
\begin{table}[h]
\centering
\begin{tabular}{lll}
A & B & C \\
\hline
1 & 2 & 3 \\
4 & 5 & 6
\end{tabular}
\caption{A sample table}
\end{table}
\lipsum[4-5]
\begin{table}[h]
\centering
\begin{tabular}{lll}
A & B & C \\
\hline
7 & 8 & 9 \\
10 & 11 & 12
\end{tabular}
\caption{Another sample table}
\end{table}
\section{Section heading}
\lipsum[6-10]
\chapter{Conclusions}
\lipsum[1-5]
% Bibliography
\printbibliography[heading=bibintoc]
\end{document}