Mercurial > cortex
view thesis/rlm-cortex-meng.tex @ 525:25f23cfd56ce
alter pics, enhance text.
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Mon, 21 Apr 2014 02:13:23 -0400 |
parents | 68665d2c32a7 |
children | 96c189d4d15e |
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}31 %\usepackage{floatrow}32 \usepackage[utf8]{inputenc}33 \usepackage[T1]{fontenc}34 %\usepackage{fixltx2e}35 %\usepackage{graphicx}36 %\usepackage{longtable}37 %\usepackage{float}38 %\usepackage{wrapfig}39 %\usepackage{rotating}40 \usepackage[normalem]{ulem}41 \usepackage{mathtools}42 %\usepackage{amsmath}43 %\usepackage{textcomp}44 \usepackage{marvosym}45 \usepackage{wasysym}46 \usepackage{amssymb}47 \usepackage{hyperref}48 \usepackage{libertine}49 \usepackage{inconsolata}50 \usepackage{rotating}51 \usepackage{caption}52 \usepackage{xcolor}53 \usepackage{minted}54 \usepackage[backend=bibtex,style=alphabetic]{biblatex}55 %\usepackage[section]{placeins}56 \usepackage[section,subsection]{extraplaceins}57 %\floatsetup[listing]{style=Plaintop}60 \captionsetup{width=.85\textwidth,font=small}62 % Configure minted source code listings.63 \usemintedstyle{default}64 \newminted{clojure}{fontsize=\footnotesize}65 \newminted{java}{fontsize=\footnotesize}66 \newminted{c}{fontsize=\footnotesize}69 % Allow colored source code listing to break across pages.70 \newenvironment{anchoredListing}{\captionsetup{type=listing}}{}72 \renewenvironment{listing}{\begin{anchoredListing}}{73 \end{anchoredListing}74 }76 % Remove ugly boxes around hyperlinks77 \definecolor{dark-red}{rgb}{0.4,0.15,0.15}78 \definecolor{dark-blue}{rgb}{0.15,0.4,0.15}79 \definecolor{medium-blue}{rgb}{0.15,0.4,0.9}80 \hypersetup{81 colorlinks, linkcolor={dark-red},82 citecolor={dark-blue}, urlcolor={medium-blue}83 }85 % Dylan -- make labels on figures and tables simpler86 \renewcommand{\thesection}{\arabic{section}}87 \renewcommand{\thefigure}{\arabic{figure}}89 % CORTEX annotated biblography90 \addbibresource{cortex.bib}91 \newcommand{\why}[1]{\\ \par{\footnotesize #1}\\}96 %% % Alter some LaTeX defaults for better treatment of figures:97 %% % See p.105 of "TeX Unbound" for suggested values.98 %% % See pp. 199-200 of Lamport's "LaTeX" book for details.99 %% % General parameters, for ALL pages:100 %% \renewcommand{\topfraction}{0.9} % max fraction of floats at top101 %% \renewcommand{\bottomfraction}{0.8} % max fraction of floats at bottom102 %% % Parameters for TEXT pages (not float pages):103 %% \setcounter{topnumber}{2}104 %% \setcounter{bottomnumber}{2}105 %% \setcounter{totalnumber}{4} % 2 may work better106 %% \setcounter{dbltopnumber}{2} % for 2-column pages107 %% \renewcommand{\dbltopfraction}{0.9} % fit big float above 2-col. text108 %% \renewcommand{\textfraction}{0.07} % allow minimal text w. figs109 %% % Parameters for FLOAT pages (not text pages):110 %% \renewcommand{\floatpagefraction}{0.7} % require fuller float pages111 %% % N.B.: floatpagefraction MUST be less than topfraction !!112 %% \renewcommand{\dblfloatpagefraction}{0.7} % require fuller float pages113 %% % remember to use [htp] or [htpb] for placement115 %\setmaxsecnumdepth{subsec}118 % The thesis!119 \pagestyle{plain}120 \begin{document}121 \include{cover}122 \pagestyle{plain}123 \tableofcontents124 %\newpage125 %\listoffigures126 %\newpage127 %\listoftables128 \include{cortex}129 \nocite{*}130 \begin{singlespace}131 \printbibliography132 \end{singlespace}133 \end{document}