view thesis/rlm-cortex-meng.tex @ 443:d3c5f9b70574

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