-
Notifications
You must be signed in to change notification settings - Fork 0
/
thesis.tex
executable file
·132 lines (96 loc) · 2.96 KB
/
thesis.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
% NCSU thesis template updated by Eric Adles to include required
% changes as per thesis editor March 27, 2007. Changes I made
% will be prefaced with my initials: EA
% NCSU thesis template updated by Jason Brinkley to include required
% changes as per thesis editor August 2008. Changes I made
% will be prefaced with my initials: JSB
%Other changes and suggestions made by Terry Byron - NCSU Statistics
\documentclass[11pt]{ncsuthesis3}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{fancyvrb}
\usepackage{epsfig}
\usepackage{graphicx}
\usepackage{latexsym}
\usepackage{bm}
\usepackage{amsmath}
\usepackage{multirow}
\usepackage{rotating}
\usepackage{pdflscape}
\usepackage{mathrsfs}
\usepackage{appendix}
\usepackage{longtable}
\usepackage{fancyhdr}
\usepackage{changepage}
\usepackage{rotating}
\usepackage{lscapenum}
% ,graphicx,lscape,dectab,harvard} %latex2e
% \input \path psfig.sty %an excellent utility for including figures-Terry
\setlength\topskip{24pt}
\pagestyle{plain} %{empty} to get Appendix without page number
\newcommand{\nullset}[0]{\varnothing}
% re-enable italics -- they ARE allowed!
% \renewcommand{\em}[0]{} % disable italics because they're not allowed!
% \newcommand{\ctt}[0]{}
\newcommand{\ctt}[0]{\tt}
% EA - If you only want to compile certain files
% you can use the '\includeonly' command which
% specifies which \include files to compile.
% Just list all of your files and comment out
% the ones you don't want to compile.
%\includeonly{
%front,
%Chapter1,
%Chapter2,
%appendix1,
%}
\begin{document}
% EA - Front matter
\include{front}
% EA - Chapter Introduction/Goals
\include{Chapter1}
% EA - Chapter Cognitive Architectures
\include{Chapter2}
% \nocite{*}
% EA Collaborative Modelling
\include{Chapter4}
% EA Implementation
\include{Chapter5}
% EA Conclusion
\include{Chapter7}
% EA - 'unsrt' == write bibliography entries as
% they occur in the text as opposed to alphabetically.
% JSB - Some bib. examples from my thesis were left here.
\bibliographystyle{unsrt}
\bibliography{thesis,additional-references}
% \begin{thebibliography}{99}
% \setlength{\baselineskip}{0.1in}
% \bibitem{cb02}
% Casella, G. and Berger, R.L. (2002)
% \newblock {\it Statistical Inference, Second Edition.}
% Duxbury Press, Belmont, CA.
% \bibitem{t06}
% Tsiatis, A.A. (2006)
% \newblock {\it Semiparametric Theory and Missing Data.}
% Springer, New York.
%\end{thebibliography}
%==================================================
% EA - The following is a hack to get a single page with
% 'Appendices' written on it as specified by
% NCSU's thesis guide.
%\newpage
%\vspace{0.2in}
\pagebreak
\appendix
% JSB - This next command is to add an appendix to the table of contents.
\addappheadtotoc
\begin{center}
{\Huge{\bf Appendices}}
\end{center}
% End of hack to get 'Appendices'
% written on a separate page
%===================================================
% EA - of course include your appendix file
\include{appendix2}
\include{appendix1}
\end{document}