diff options
author | Karl Berry <karl@freefriends.org> | 2021-06-17 20:36:22 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2021-06-17 20:36:22 +0000 |
commit | 75aa1b8146b789463ab2404d05cf861f64b44170 (patch) | |
tree | 4220a492b489b02f05f4f8201ec170d7af63ab01 /Master/texmf-dist/doc/latex/msu-thesis/samples | |
parent | 561f5046030f8b99375f74e1d2e3639391bccf00 (diff) |
msu-thesis (17jun21)
git-svn-id: svn://tug.org/texlive/trunk@59613 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/msu-thesis/samples')
-rw-r--r-- | Master/texmf-dist/doc/latex/msu-thesis/samples/MSU-thesis-template.pdf | bin | 55385 -> 0 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/msu-thesis/samples/MSU-thesis-template.tex | 55 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/msu-thesis/samples/MSU-thesis-testfile.pdf | bin | 199924 -> 196098 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/msu-thesis/samples/MSU-thesis-testfile.tex | 36 |
4 files changed, 57 insertions, 34 deletions
diff --git a/Master/texmf-dist/doc/latex/msu-thesis/samples/MSU-thesis-template.pdf b/Master/texmf-dist/doc/latex/msu-thesis/samples/MSU-thesis-template.pdf Binary files differdeleted file mode 100644 index 93ded329af0..00000000000 --- a/Master/texmf-dist/doc/latex/msu-thesis/samples/MSU-thesis-template.pdf +++ /dev/null diff --git a/Master/texmf-dist/doc/latex/msu-thesis/samples/MSU-thesis-template.tex b/Master/texmf-dist/doc/latex/msu-thesis/samples/MSU-thesis-template.tex index 926c2a50934..c82f6e0020e 100644 --- a/Master/texmf-dist/doc/latex/msu-thesis/samples/MSU-thesis-template.tex +++ b/Master/texmf-dist/doc/latex/msu-thesis/samples/MSU-thesis-template.tex @@ -1,10 +1,11 @@ % This is a template for use with the MSU Thesis class -% Vesion 2.9c 2021/05/07 +% Vesion 3.0 2021/06/10 % % Class options: %[PhD] Doctor of Philosophy (default) %[DEd] Doctor of Education %[DMA] Doctor of Musical Arts +%[DNP] Doctor of Nursing Practice %[MA] Master of Arts %[MS] Master of Science %[MAT] Master of Arts for Teachers @@ -32,16 +33,20 @@ % % If you have large tables/figures that need to be in landscape mode, add the [lscape] option % -% The class accepts 12pt, 11pt or 10pt font size options. For Times New Roman use 12pt (default). - -% This is standard fontenc/inputenc for pdflatex +% The class accepts 12pt, 11pt or 10pt font size options. +% For Times New Roman as in this example document, use 12pt (default). +% +% If you require per-chapter appendices add the [chapterapp] option +% +% If you require per-chapter bibliographies add the [chapterbib] option +% +% This is standard fontenc for pdflatex % If you use LuaLaTeX or XeLaTeX you should replace this with the fontspec package -\usepackage[utf8]{inputenc} \usepackage[T1]{fontenc} % % If the thesis office requires Times, we'll give them Times % You can experiment with other font packages here if you like. -% If you are using XeLaTeX or LuaLaTeX load the Times or Times New Roman font with \setmainfont +% If you are using XeLaTeX or LuaLaTeX load TeX Gyre Termes, Times or Times New Roman font with \setmainfont \usepackage{newtxtext,newtxmath} % % Load any extra packages here @@ -62,16 +67,23 @@ \frontmatter % First make the title page \maketitlepage -% Next make the abstract + +% if you have public abstract (optional) it should go here +%\begin{publicabstract} +% Public abstract goes here +%\end{publicabstract} + +% Next make the regular abstract (obligatory) \begin{abstract} % Your abstract goes here. Master's 1 page max. PhD 2 page max. \end{abstract} % Force a newpage \clearpage -% Make the copyright page. The Graduate School ridiculously prohibits you -% from having a copyright page unless you pay ProQuest to register the copyright. -% This should be illegal, but I didn't make up the rule. +% Make the copyright page. The Graduate School ridiculously claims that you +% can't have a copyright page unless you pay ProQuest to register the copyright. +% This is simply not the case, so put in your copyright page whether or not you +% intend to pay Proquest to register the copyright. \makecopyrightpage @@ -117,15 +129,20 @@ Your acknowledgements here. % % % If you have appendices, they would go here. -% Comment these lines out if you don't +% If you only have one appendix it will look like this: (comment this out if you have no appendices) +\begin{appendix} +\chapter{Your appendix} +\end{appendix} +% +% % If you have more than one appendix, you need to use % \begin{appendices} % \chapter{First appendix} % \chapter{Second appendix} % \end{appendices} % -\appendix -\chapter{Your appendix} +% If each chapter has its own set of appendices, then load the class with the [chapterapp] option +% and put your {appendix} or {appendices} environments at the end of each chapter. % \backmatter % The next lines add the dots back into the References/Bibliography heading @@ -135,14 +152,20 @@ Your acknowledgements here. % \protect\renewcommand{\protect\cftchapterdotsep} {\cftdotsep}} % \makebibliographypage % make the bibliography cover page -% Bibliography can be single spaced % -\SingleSpacing % -% Your bibliography command here (e.g. \bibliography{your-bib-file}) if using natbib +% Your bibliography command here +% e.g. \bibliography{your-bib-file}) if using natbib +% e.g. \printbibliography if using biblatex % % Remember that although the bibliography is single spaced, there needs to % be a blank line between entries. This is set by your bibliography package % If you are using natbib it is \bibsep; if using biblatex it's \bibitemsep +% These are set automatically by the class if you are using these packages +% +% If you need per-chapter bibliographies, you need to use the [chapterbib] +% class option and you would use \makebibliographypage before each +% chapter level bibliography and then the relevant bibliography command +% \end{document} diff --git a/Master/texmf-dist/doc/latex/msu-thesis/samples/MSU-thesis-testfile.pdf b/Master/texmf-dist/doc/latex/msu-thesis/samples/MSU-thesis-testfile.pdf Binary files differindex 7e4e651ae88..1370069e3f3 100644 --- a/Master/texmf-dist/doc/latex/msu-thesis/samples/MSU-thesis-testfile.pdf +++ b/Master/texmf-dist/doc/latex/msu-thesis/samples/MSU-thesis-testfile.pdf diff --git a/Master/texmf-dist/doc/latex/msu-thesis/samples/MSU-thesis-testfile.tex b/Master/texmf-dist/doc/latex/msu-thesis/samples/MSU-thesis-testfile.tex index b6c8f12d8dd..d9a2196b85c 100644 --- a/Master/texmf-dist/doc/latex/msu-thesis/samples/MSU-thesis-testfile.tex +++ b/Master/texmf-dist/doc/latex/msu-thesis/samples/MSU-thesis-testfile.tex @@ -1,5 +1,5 @@ % !TEX TS-program = pdflatexmk -% v2.9c Testfile +% v3.0 Testfile \listfiles \documentclass[lscape]{msu-thesis} @@ -10,7 +10,7 @@ \usepackage{newtxtext,newtxmath} % If they want Times we’ll give them Times \usepackage{amsmath} % -\usepackage[]{natbib} +\usepackage{natbib} \bibliographystyle{apalike} @@ -96,7 +96,6 @@ This is some text that precedes a section. \trans A French example.} \end{xlist} \end{exe} - \lipsum[1] \lipsum[2]\cite{Munn1999} says the following.\footnote{A footnote. This is a footnote with a subscript$_{\text{i}_{\text{j}}}$. \lipsum[9]} \lipsum[2] \begin{table} @@ -191,6 +190,8 @@ This is another listing \caption{Another listing caption} \end{listing} \lipsum[8] +\section{A section with no subsection following it} +\lipsum[9] Now sample page in landscape (need to use [lscape] option for this) First clear the page. Then make the page style {lscape} \clearpage\pagestyle{lscape} @@ -202,7 +203,6 @@ This is another listing \begin{table} \centering \begin{tabular}{lllllll} - \toprule A & B & C & D & E & F & G \\ \midrule @@ -221,10 +221,8 @@ A & B & C & D & E & F & G \\ 487.6847246 & 200.8682708 & 739.9673152 & 395.1695216 & 524.7826343 & 228.4705562 & 39.95541901 \\ 207.8091332 & 300.6871609 & 627.8808013 & 740.4949976 & 128.9558068 & 176.2158891 & 296.1642661 \\ 336.7537922 & 859.907318 & 704.2503641 & 426.845866 & 773.8926695 & 883.1773631 & 64.85043069 \\ - \bottomrule \end{tabular} - \caption{Some random data that takes up too much room.} \end{table} @@ -262,22 +260,24 @@ A & B & C & D & E & F & G \\ %% at the end of the {landscape} environment, make the page style {plain} \pagestyle{plain} % - - %\begin{appendices} ... \end{appendices} % use this if you have more than one appendix \clearpage -%\appendix % use this if you have only one appendix -\begin{appendices} % use this if you have more than one appendix -\chapter{An appendix} -\section{An appendix section} -\lipsum[9-15] -\chapter{A second appendix} -\section{An appendix section} -\lipsum[16-17] -\end{appendices} +%\begin{appendix} ... \end{appendix} % use this if you have only one appendix +\begin{appendix} +\chapter{A single appendix} +\lipsum[11] +\end{appendix} + +%\begin{appendices} % use this if you have more than one appendix +%\chapter{An appendix} +%\section{An appendix section} +%\lipsum[9-15] +%\chapter{A second appendix} +%\section{An appendix section} +%\lipsum[16-17] +%\end{appendices} \backmatter -\SingleSpacing % This command creates the cover page for the bibliography \makebibliographypage \bibliography{MSU-thesis-testfile} |