summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/msu-thesis/samples/MSU-thesis-chapterbib-testfile.tex
blob: ed928c3f76fd6f0853eec584cf959da957732361 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
% !TEX TS-program = pdfLaTeXmk
% Test file for per-chapter stuff using natbib+chapterbib
%
\documentclass[chapterbib,chapterapp]{msu-thesis}
\usepackage[T1]{fontenc}
\usepackage{newtxtext,newtxmath}
\usepackage[]{chapterbib}
\usepackage[]{natbib}
\usepackage{lipsum}

\usepackage{hyperref}


\title{A thesis using per-chapter appendices and bibliographies}
\author{Joe Linguist}
\fieldofstudy{Linguistics} % This should be in sentence case
\date{2021}
\setcounter{msutocdepth}{1} % default is 1
\begin{document}
\frontmatter
\maketitlepage
\begin{abstract}
\lipsum[1]
\end{abstract}
\clearpage
\makecopyrightpage
\clearpage
% Your Acknowledgements are formatted like a chapter, but with no number
\chapter*{Acknowledgements}
\DoubleSpacing % Acknowledgements should be double spaced
 I would like to acknowledge lots of people...\lipsum
%
 \clearpage

% We need to turn single spacing back on for the contents/figures/tables lists
\SingleSpacing
\tableofcontents* % table of contents will not be listed in the TOC

\clearpage
\listoftables % comment this out if you have no tables
\clearpage
\listoffigures % comment this out if you have no figures
\mainmatter

\include{chap1bib}
\include{chap2bib}
\include{chap3bib}
\include{chap4bib}
\chapter{Conclusions}

\end{document}