summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/msu-thesis/samples/MSU-thesis-chapterbib-testfile.tex
diff options
context:
space:
mode:
Diffstat (limited to 'macros/latex/contrib/msu-thesis/samples/MSU-thesis-chapterbib-testfile.tex')
-rw-r--r--macros/latex/contrib/msu-thesis/samples/MSU-thesis-chapterbib-testfile.tex51
1 files changed, 51 insertions, 0 deletions
diff --git a/macros/latex/contrib/msu-thesis/samples/MSU-thesis-chapterbib-testfile.tex b/macros/latex/contrib/msu-thesis/samples/MSU-thesis-chapterbib-testfile.tex
new file mode 100644
index 0000000000..9f7948b3f3
--- /dev/null
+++ b/macros/latex/contrib/msu-thesis/samples/MSU-thesis-chapterbib-testfile.tex
@@ -0,0 +1,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}
+
+\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}