annotate thesis/mitthesis/main.tex @ 421:c2c28c3e27c4

get mit thesis template file.
author Robert McIntyre <rlm@mit.edu>
date Fri, 21 Mar 2014 00:08:49 -0400
parents
children
rev   line source
rlm@421 1 % -*- Mode:TeX -*-
rlm@421 2
rlm@421 3 %% IMPORTANT: The official thesis specifications are available at:
rlm@421 4 %% http://libraries.mit.edu/archives/thesis-specs/
rlm@421 5 %%
rlm@421 6 %% Please verify your thesis' formatting and copyright
rlm@421 7 %% assignment before submission. If you notice any
rlm@421 8 %% discrepancies between these templates and the
rlm@421 9 %% MIT Libraries' specs, please let us know
rlm@421 10 %% by e-mailing thesis@mit.edu
rlm@421 11
rlm@421 12 %% The documentclass options along with the pagestyle can be used to generate
rlm@421 13 %% a technical report, a draft copy, or a regular thesis. You may need to
rlm@421 14 %% re-specify the pagestyle after you \include cover.tex. For more
rlm@421 15 %% information, see the first few lines of mitthesis.cls.
rlm@421 16
rlm@421 17 %\documentclass[12pt,vi,twoside]{mitthesis}
rlm@421 18 %%
rlm@421 19 %% If you want your thesis copyright to you instead of MIT, use the
rlm@421 20 %% ``vi'' option, as above.
rlm@421 21 %%
rlm@421 22 %\documentclass[12pt,twoside,leftblank]{mitthesis}
rlm@421 23 %%
rlm@421 24 %% If you want blank pages before new chapters to be labelled ``This
rlm@421 25 %% Page Intentionally Left Blank'', use the ``leftblank'' option, as
rlm@421 26 %% above.
rlm@421 27
rlm@421 28 \documentclass[12pt,twoside]{mitthesis}
rlm@421 29 \usepackage{lgrind}
rlm@421 30 \pagestyle{plain}
rlm@421 31
rlm@421 32 %% This bit allows you to either specify only the files which you wish to
rlm@421 33 %% process, or `all' to process all files which you \include.
rlm@421 34 %% Krishna Sethuraman (1990).
rlm@421 35
rlm@421 36 \typein [\files]{Enter file names to process, (chap1,chap2 ...), or `all' to
rlm@421 37 process all files:}
rlm@421 38 \def\all{all}
rlm@421 39 \ifx\files\all \typeout{Including all files.} \else \typeout{Including only \files.} \includeonly{\files} \fi
rlm@421 40
rlm@421 41 \begin{document}
rlm@421 42
rlm@421 43 \include{cover}
rlm@421 44 % Some departments (e.g. 5) require an additional signature page. See
rlm@421 45 % signature.tex for more information and uncomment the following line if
rlm@421 46 % applicable.
rlm@421 47 % \include{signature}
rlm@421 48 \pagestyle{plain}
rlm@421 49 \include{contents}
rlm@421 50 \include{chap1}
rlm@421 51 \include{chap2}
rlm@421 52 \appendix
rlm@421 53 \include{appa}
rlm@421 54 \include{appb}
rlm@421 55 \include{biblio}
rlm@421 56 \end{document}
rlm@421 57