csuebthesis-template
作者:
Patrick Huang
最近上传:
3 年前
许可:
Creative Commons CC BY 4.0
摘要:
California State University, East Bay Master's thesis template
\begin
Discover why 18 million people worldwide trust Overleaf with their work.
\begin
Discover why 18 million people worldwide trust Overleaf with their work.
\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}