view thesis/rlm-cortex-meng.tex @ 465:e4104ce9105c

working on body/joints.
author Robert McIntyre <rlm@mit.edu>
date Fri, 28 Mar 2014 11:08:32 -0400
parents f339e3d5cc8c
children 5a15611fbb9f
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 %\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 }
67 \renewcommand{\thesection}{\arabic{section}}
68 \renewcommand{\thefigure}{\arabic{figure}}
70 %%%%% better source code display
71 \usepackage{minted}
73 %% dyl fonts
75 % \usemintedstyle{friendly}
76 % \usemintedstyle{perldoc}
77 %\definecolor{bg}{rgb}{0.95,0.95,0.95}
78 \definecolor{bg}{rgb}{0.625,0,0}
79 \usemintedstyle{default}
80 \newcommand{\why}[1]{\\ \par{\footnotesize #1}}
81 %\setmonofont[Scale=0.9,BoldFont={Inconsolata Bold}]{Inconsolata}
83 %\usepackage[gray]{xcolor}
84 \newminted{clojure}{fontsize=\footnotesize}
85 %\newminted{clojure}{fontsize=\footnotesize,bgcolor=bg}
86 %\newminted{clojure}{fontsize=\scriptsize}
88 %\usepackage{lgrind}
89 \pagestyle{plain}
92 % Alter some LaTeX defaults for better treatment of figures:
93 % See p.105 of "TeX Unbound" for suggested values.
94 % See pp. 199-200 of Lamport's "LaTeX" book for details.
95 % General parameters, for ALL pages:
96 \renewcommand{\topfraction}{0.9} % max fraction of floats at top
97 \renewcommand{\bottomfraction}{0.8} % max fraction of floats at bottom
98 % Parameters for TEXT pages (not float pages):
99 \setcounter{topnumber}{2}
100 \setcounter{bottomnumber}{2}
101 \setcounter{totalnumber}{4} % 2 may work better
102 \setcounter{dbltopnumber}{2} % for 2-column pages
103 \renewcommand{\dbltopfraction}{0.9} % fit big float above 2-col. text
104 \renewcommand{\textfraction}{0.07} % allow minimal text w. figs
105 % Parameters for FLOAT pages (not text pages):
106 \renewcommand{\floatpagefraction}{0.7} % require fuller float pages
107 % N.B.: floatpagefraction MUST be less than topfraction !!
108 \renewcommand{\dblfloatpagefraction}{0.7} % require fuller float pages
109 % remember to use [htp] or [htpb] for placement
112 \begin{document}
114 \include{cover}
115 % Some departments (e.g. 5) require an additional signature page. See
116 % signature.tex for more information and uncomment the following line if
117 % applicable.
118 % \include{signature}
119 \pagestyle{plain}
120 \tableofcontents
121 %\newpage
122 %\listoffigures
123 %\newpage
124 %\listoftables
125 \include{cortex}
126 \nocite{*}
127 %\include{chap2}
128 \appendix
129 \begin{singlespace}
130 %\bibliographystyle{agsm}
131 %\bibliographystyle{apa}
132 %\bibliographystyle{plainnat}
133 \include{user-guide}
134 \printbibliography
135 \end{singlespace}
136 \end{document}