diff 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
line wrap: on
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/thesis/mitthesis/main.tex	Fri Mar 21 00:08:49 2014 -0400
     1.3 @@ -0,0 +1,57 @@
     1.4 +% -*- Mode:TeX -*-
     1.5 +
     1.6 +%% IMPORTANT: The official thesis specifications are available at:
     1.7 +%%            http://libraries.mit.edu/archives/thesis-specs/
     1.8 +%%
     1.9 +%%            Please verify your thesis' formatting and copyright
    1.10 +%%            assignment before submission.  If you notice any
    1.11 +%%            discrepancies between these templates and the 
    1.12 +%%            MIT Libraries' specs, please let us know
    1.13 +%%            by e-mailing thesis@mit.edu
    1.14 +
    1.15 +%% The documentclass options along with the pagestyle can be used to generate
    1.16 +%% a technical report, a draft copy, or a regular thesis.  You may need to
    1.17 +%% re-specify the pagestyle after you \include  cover.tex.  For more
    1.18 +%% information, see the first few lines of mitthesis.cls. 
    1.19 +
    1.20 +%\documentclass[12pt,vi,twoside]{mitthesis}
    1.21 +%%
    1.22 +%%  If you want your thesis copyright to you instead of MIT, use the
    1.23 +%%  ``vi'' option, as above.
    1.24 +%%
    1.25 +%\documentclass[12pt,twoside,leftblank]{mitthesis}
    1.26 +%%
    1.27 +%% If you want blank pages before new chapters to be labelled ``This
    1.28 +%% Page Intentionally Left Blank'', use the ``leftblank'' option, as
    1.29 +%% above. 
    1.30 +
    1.31 +\documentclass[12pt,twoside]{mitthesis}
    1.32 +\usepackage{lgrind}
    1.33 +\pagestyle{plain}
    1.34 +
    1.35 +%% This bit allows you to either specify only the files which you wish to
    1.36 +%% process, or `all' to process all files which you \include.
    1.37 +%% Krishna Sethuraman (1990).
    1.38 +
    1.39 +\typein [\files]{Enter file names to process, (chap1,chap2 ...), or `all' to
    1.40 +process all files:}
    1.41 +\def\all{all}
    1.42 +\ifx\files\all \typeout{Including all files.} \else \typeout{Including only \files.} \includeonly{\files} \fi
    1.43 +
    1.44 +\begin{document}
    1.45 +
    1.46 +\include{cover}
    1.47 +% Some departments (e.g. 5) require an additional signature page.  See
    1.48 +% signature.tex for more information and uncomment the following line if
    1.49 +% applicable.
    1.50 +% \include{signature}
    1.51 +\pagestyle{plain}
    1.52 +\include{contents}
    1.53 +\include{chap1}
    1.54 +\include{chap2}
    1.55 +\appendix
    1.56 +\include{appa}
    1.57 +\include{appb}
    1.58 +\include{biblio}
    1.59 +\end{document}
    1.60 +