annotate thesis/thesis.tex @ 426:435b5e22d72a

more scaffolding -- got minimal bibliography to work
author Robert McIntyre <rlm@mit.edu>
date Fri, 21 Mar 2014 15:28:45 -0400
parents efba8526a662
children
rev   line source
rlm@422 1 % -*- Mode:TeX -*-
rlm@422 2
rlm@422 3 %% IMPORTANT: The official thesis specifications are available at:
rlm@422 4 %% http://libraries.mit.edu/archives/thesis-specs/
rlm@422 5 %%
rlm@422 6 %% Please verify your thesis' formatting and copyright
rlm@422 7 %% assignment before submission. If you notice any
rlm@422 8 %% discrepancies between these templates and the
rlm@422 9 %% MIT Libraries' specs, please let us know
rlm@422 10 %% by e-mailing thesis@mit.edu
rlm@422 11
rlm@422 12 %% The documentclass options along with the pagestyle can be used to generate
rlm@422 13 %% a technical report, a draft copy, or a regular thesis. You may need to
rlm@422 14 %% re-specify the pagestyle after you \include cover.tex. For more
rlm@422 15 %% information, see the first few lines of mitthesis.cls.
rlm@422 16
rlm@422 17 %\documentclass[12pt,vi,twoside]{mitthesis}
rlm@422 18 %%
rlm@422 19 %% If you want your thesis copyright to you instead of MIT, use the
rlm@422 20 %% ``vi'' option, as above.
rlm@422 21 %%
rlm@422 22 %\documentclass[12pt,twoside,leftblank]{mitthesis}
rlm@422 23 %%
rlm@422 24 %% If you want blank pages before new chapters to be labelled ``This
rlm@422 25 %% Page Intentionally Left Blank'', use the ``leftblank'' option, as
rlm@422 26 %% above.
rlm@422 27
rlm@422 28 \documentclass[12pt,twoside]{mitthesis}
rlm@424 29 \usepackage[utf8]{inputenc}
rlm@424 30 \usepackage[T1]{fontenc}
rlm@424 31 \usepackage{fixltx2e}
rlm@424 32 \usepackage{graphicx}
rlm@424 33 \usepackage{longtable}
rlm@424 34 \usepackage{float}
rlm@424 35 \usepackage{wrapfig}
rlm@424 36 \usepackage{rotating}
rlm@424 37 \usepackage[normalem]{ulem}
rlm@424 38 \usepackage{amsmath}
rlm@424 39 \usepackage{textcomp}
rlm@424 40 \usepackage{marvosym}
rlm@424 41 \usepackage{wasysym}
rlm@424 42 \usepackage{amssymb}
rlm@424 43 \usepackage{hyperref}
rlm@425 44
rlm@425 45 %%%%% better source code display
rlm@425 46 \usepackage{minted}
rlm@425 47
rlm@425 48 % \usemintedstyle{friendly}
rlm@425 49 % \usemintedstyle{perldoc}
rlm@425 50 %\definecolor{bg}{rgb}{0.95,0.95,0.95}
rlm@425 51 \definecolor{bg}{rgb}{0.95,0.95,0.95}
rlm@425 52 \usemintedstyle{default}
rlm@425 53
rlm@425 54
rlm@425 55 %\newminted{clojure}{fontsize=\scriptsize,bgcolor=bg}
rlm@425 56 \newminted{clojure}{fontsize=\scriptsize}
rlm@425 57
rlm@422 58 %\usepackage{lgrind}
rlm@422 59 \pagestyle{plain}
rlm@422 60
rlm@422 61 \begin{document}
rlm@422 62
rlm@422 63 \include{cover}
rlm@422 64 % Some departments (e.g. 5) require an additional signature page. See
rlm@422 65 % signature.tex for more information and uncomment the following line if
rlm@422 66 % applicable.
rlm@422 67 % \include{signature}
rlm@422 68 \pagestyle{plain}
rlm@422 69 \include{contents}
rlm@422 70 \include{cortex}
rlm@426 71 %\include{chap2}
rlm@422 72 \appendix
rlm@426 73 \begin{singlespace}
rlm@426 74 \bibliography{cortex}
rlm@426 75 \bibliographystyle{plain}
rlm@426 76 \end{singlespace}
rlm@422 77 \end{document}
rlm@422 78