annotate thesis/rlm-cortex-meng.tex @ 441:c20de2267d39

completeing first third of first chapter.
author Robert McIntyre <rlm@mit.edu>
date Mon, 24 Mar 2014 20:59:35 -0400
parents c1e6b7221b2f
children d3c5f9b70574
rev   line source
rlm@428 1 % -*- Mode:TeX -*-
rlm@427 2
rlm@428 3 %% IMPORTANT: The official thesis specifications are available at:
rlm@428 4 %% http://libraries.mit.edu/archives/thesis-specs/
rlm@428 5 %%
rlm@428 6 %% Please verify your thesis' formatting and copyright
rlm@428 7 %% assignment before submission. If you notice any
rlm@428 8 %% discrepancies between these templates and the
rlm@428 9 %% MIT Libraries' specs, please let us know
rlm@428 10 %% by e-mailing thesis@mit.edu
rlm@427 11
rlm@428 12 %% The documentclass options along with the pagestyle can be used to generate
rlm@428 13 %% a technical report, a draft copy, or a regular thesis. You may need to
rlm@428 14 %% re-specify the pagestyle after you \include cover.tex. For more
rlm@428 15 %% information, see the first few lines of mitthesis.cls.
rlm@427 16
rlm@428 17 %\documentclass[12pt,vi,twoside]{mitthesis}
rlm@428 18 %%
rlm@428 19 %% If you want your thesis copyright to you instead of MIT, use the
rlm@428 20 %% ``vi'' option, as above.
rlm@428 21 %%
rlm@428 22 %\documentclass[12pt,twoside,leftblank]{mitthesis}
rlm@428 23 %%
rlm@428 24 %% If you want blank pages before new chapters to be labelled ``This
rlm@428 25 %% Page Intentionally Left Blank'', use the ``leftblank'' option, as
rlm@428 26 %% above.
rlm@427 27
rlm@441 28 \documentclass[12pt,twoside,singlespace,vi]{mitthesis}
rlm@428 29 \usepackage[utf8]{inputenc}
rlm@428 30 \usepackage[T1]{fontenc}
rlm@428 31 \usepackage{fixltx2e}
rlm@428 32 \usepackage{graphicx}
rlm@428 33 \usepackage{longtable}
rlm@428 34 \usepackage{float}
rlm@428 35 \usepackage{wrapfig}
rlm@428 36 \usepackage{rotating}
rlm@428 37 \usepackage[normalem]{ulem}
rlm@428 38 \usepackage{amsmath}
rlm@428 39 \usepackage{textcomp}
rlm@428 40 \usepackage{marvosym}
rlm@428 41 \usepackage{wasysym}
rlm@428 42 \usepackage{amssymb}
rlm@428 43 \usepackage{hyperref}
rlm@429 44 \usepackage{libertine}
rlm@429 45 \usepackage{inconsolata}
rlm@429 46
rlm@431 47 \usepackage[backend=bibtex,style=alphabetic]{biblatex}
rlm@431 48 \addbibresource{cortex.bib}
rlm@431 49
rlm@431 50 \usepackage{xcolor}
rlm@431 51 \definecolor{dark-red}{rgb}{0.4,0.15,0.15}
rlm@431 52 \definecolor{dark-blue}{rgb}{0.15,0.4,0.15}
rlm@431 53 \definecolor{medium-blue}{rgb}{0,0,0.5}
rlm@431 54 \hypersetup{
rlm@431 55 colorlinks, linkcolor={dark-red},
rlm@431 56 citecolor={dark-blue}, urlcolor={medium-blue}
rlm@431 57 }
rlm@431 58
rlm@429 59 \renewcommand{\thesection}{\arabic{section}}
rlm@427 60
rlm@428 61 %%%%% better source code display
rlm@428 62 \usepackage{minted}
rlm@427 63
rlm@429 64 %% dyl fonts
rlm@429 65
rlm@428 66 % \usemintedstyle{friendly}
rlm@428 67 % \usemintedstyle{perldoc}
rlm@428 68 %\definecolor{bg}{rgb}{0.95,0.95,0.95}
rlm@429 69 \definecolor{bg}{rgb}{0.625,0,0}
rlm@428 70 \usemintedstyle{default}
rlm@429 71 \newcommand{\why}[1]{\\ \par{\footnotesize #1}}
rlm@429 72 %\setmonofont[Scale=0.9,BoldFont={Inconsolata Bold}]{Inconsolata}
rlm@427 73
rlm@429 74 %\usepackage[gray]{xcolor}
rlm@429 75 \newminted{clojure}{fontsize=\footnotesize}
rlm@429 76 %\newminted{clojure}{fontsize=\footnotesize,bgcolor=bg}
rlm@429 77 %\newminted{clojure}{fontsize=\scriptsize}
rlm@427 78
rlm@428 79 %\usepackage{lgrind}
rlm@428 80 \pagestyle{plain}
rlm@427 81
rlm@428 82 \begin{document}
rlm@427 83
rlm@428 84 \include{cover}
rlm@428 85 % Some departments (e.g. 5) require an additional signature page. See
rlm@428 86 % signature.tex for more information and uncomment the following line if
rlm@428 87 % applicable.
rlm@428 88 % \include{signature}
rlm@428 89 \pagestyle{plain}
rlm@429 90 \tableofcontents
rlm@429 91 %\newpage
rlm@429 92 %\listoffigures
rlm@429 93 %\newpage
rlm@429 94 %\listoftables
rlm@428 95 \include{cortex}
rlm@429 96 \nocite{*}
rlm@428 97 %\include{chap2}
rlm@428 98 \appendix
rlm@428 99 \begin{singlespace}
rlm@429 100 %\bibliographystyle{agsm}
rlm@429 101 %\bibliographystyle{apa}
rlm@431 102 %\bibliographystyle{plainnat}
rlm@437 103 \include{user-guide}
rlm@431 104 \printbibliography
rlm@428 105 \end{singlespace}
rlm@428 106 \end{document}
rlm@427 107