Mercurial > cortex
view thesis/rlm-cortex-meng.tex @ 464:8bf4bb02ed05
sleeeeeep.
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Fri, 28 Mar 2014 00:42:42 -0400 |
parents | f339e3d5cc8c |
children | e4104ce9105c |
line wrap: on
line source
1 % -*- Mode:TeX -*-3 %% IMPORTANT: The official thesis specifications are available at:4 %% http://libraries.mit.edu/archives/thesis-specs/5 %%6 %% Please verify your thesis' formatting and copyright7 %% assignment before submission. If you notice any8 %% discrepancies between these templates and the9 %% MIT Libraries' specs, please let us know10 %% by e-mailing thesis@mit.edu12 %% The documentclass options along with the pagestyle can be used to generate13 %% a technical report, a draft copy, or a regular thesis. You may need to14 %% re-specify the pagestyle after you \include cover.tex. For more15 %% information, see the first few lines of mitthesis.cls.17 %\documentclass[12pt,vi,twoside]{mitthesis}18 %%19 %% If you want your thesis copyright to you instead of MIT, use the20 %% ``vi'' option, as above.21 %%22 %\documentclass[12pt,twoside,leftblank]{mitthesis}23 %%24 %% If you want blank pages before new chapters to be labelled ``This25 %% Page Intentionally Left Blank'', use the ``leftblank'' option, as26 %% above.28 \documentclass[12pt,twoside,singlespace,vi]{mitthesis}29 %\documentclass[12pt,twoside,vi]{mitthesis}30 \usepackage[utf8]{inputenc}31 \usepackage[T1]{fontenc}32 \usepackage{fixltx2e}33 \usepackage{graphicx}34 \usepackage{longtable}35 \usepackage{float}36 \usepackage{wrapfig}37 \usepackage{rotating}38 \usepackage[normalem]{ulem}39 \usepackage{amsmath}40 \usepackage{textcomp}41 \usepackage{marvosym}42 \usepackage{wasysym}43 \usepackage{amssymb}44 \usepackage{hyperref}45 \usepackage{libertine}46 \usepackage{inconsolata}47 \usepackage{rotating}48 \usepackage{caption}50 %\usepackage{afterpage}52 %\afterpage{\clearpage} %54 \usepackage[backend=bibtex,style=alphabetic]{biblatex}55 \addbibresource{cortex.bib}57 \usepackage{xcolor}58 \definecolor{dark-red}{rgb}{0.4,0.15,0.15}59 \definecolor{dark-blue}{rgb}{0.15,0.4,0.15}60 \definecolor{medium-blue}{rgb}{0,0,0.5}61 \hypersetup{62 colorlinks, linkcolor={dark-red},63 citecolor={dark-blue}, urlcolor={medium-blue}64 }66 \newenvironment{code}{\captionsetup{type=listing}}{}68 \renewcommand{\thesection}{\arabic{section}}69 \renewcommand{\thefigure}{\arabic{figure}}71 %%%%% better source code display72 \usepackage{minted}74 %% dyl fonts76 % \usemintedstyle{friendly}77 % \usemintedstyle{perldoc}78 %\definecolor{bg}{rgb}{0.95,0.95,0.95}79 \definecolor{bg}{rgb}{0.625,0,0}80 \usemintedstyle{default}81 \newcommand{\why}[1]{\\ \par{\footnotesize #1}}82 %\setmonofont[Scale=0.9,BoldFont={Inconsolata Bold}]{Inconsolata}84 %\usepackage[gray]{xcolor}85 \newminted{clojure}{fontsize=\footnotesize}86 %\newminted{clojure}{fontsize=\footnotesize,bgcolor=bg}87 %\newminted{clojure}{fontsize=\scriptsize}89 %\usepackage{lgrind}90 \pagestyle{plain}93 %% % Alter some LaTeX defaults for better treatment of figures:94 %% % See p.105 of "TeX Unbound" for suggested values.95 %% % See pp. 199-200 of Lamport's "LaTeX" book for details.96 %% % General parameters, for ALL pages:97 %% \renewcommand{\topfraction}{0.9} % max fraction of floats at top98 %% \renewcommand{\bottomfraction}{0.8} % max fraction of floats at bottom99 %% % Parameters for TEXT pages (not float pages):100 %% \setcounter{topnumber}{2}101 %% \setcounter{bottomnumber}{2}102 %% \setcounter{totalnumber}{4} % 2 may work better103 %% \setcounter{dbltopnumber}{2} % for 2-column pages104 %% \renewcommand{\dbltopfraction}{0.9} % fit big float above 2-col. text105 %% \renewcommand{\textfraction}{0.07} % allow minimal text w. figs106 %% % Parameters for FLOAT pages (not text pages):107 %% \renewcommand{\floatpagefraction}{0.7} % require fuller float pages108 %% % N.B.: floatpagefraction MUST be less than topfraction !!109 %% \renewcommand{\dblfloatpagefraction}{0.7} % require fuller float pages110 %% % remember to use [htp] or [htpb] for placement113 \begin{document}115 \include{cover}116 % Some departments (e.g. 5) require an additional signature page. See117 % signature.tex for more information and uncomment the following line if118 % applicable.119 % \include{signature}120 \pagestyle{plain}121 \tableofcontents122 %\newpage123 %\listoffigures124 %\newpage125 %\listoftables126 \include{cortex}127 \nocite{*}128 %\include{chap2}129 \appendix130 \begin{singlespace}131 %\bibliographystyle{agsm}132 %\bibliographystyle{apa}133 %\bibliographystyle{plainnat}134 \include{user-guide}135 \printbibliography136 \end{singlespace}137 \end{document}