forked from petebachant/unh-thesis-latex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
thesis.tex
75 lines (51 loc) · 2.6 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
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% UNH Thesis Style defined by other people and used successfully by
% Iulian Ruset for PhD Thesis submitted and accepted May 2005
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[12pt,letterpaper]{report} % use this when printing for thesis submission (single sided)
%\documentclass[11pt,letterpaper]{book} % use this instead of previous if double side wanted (for drafts), and some trees will be saved
%%%%%%%%%%%%%%%%%%%%
\renewcommand\bibname{\vspace{0.2in} \Large BIBLIOGRAPHY} % To make bibliography in capital 12/05/05 Burcin Donmez
%%%%%%%%%%%%%%%%%%%%
%\input{../chapters/frontmatter/bookdefs}
\input{bookdefs}
%%%%%%%%%%5
% This piece of code added to change the title "bibliography" to "references" -Gopal
% source - http://web.mit.edu/answers/latex/latex_bibtoref.html
\makeatletter
\def\thebibliography#1{\chapter*{REFERENCES\@mkboth
{REFERENCES}{REFERENCES}}\list
{[\arabic{enumi}]}{\settowidth\labelwidth{[#1]}\leftmargin\labelwidth
\advance\leftmargin\labelsep
\usecounter{enumi}}
\def\newblock{\hskip .11em plus .33em minus .07em}
\sloppy\clubpenalty4000\widowpenalty4000
\sfcode`\.=1000\relax}
\makeatother
%%%%%%%%%%%%%%
\begin{document}
%\include{../chapters/frontmatter/frontmatter} % FRONTMATTER - Includes title page, acknowledgments, abstract, etc
\include{chapters/frontmatter/frontmatter} % FRONTMATTER - Includes title page, acknowledgments, abstract, etc
%\begin{singlespace} % just in case you want to reduce the size of the thesis for printing purposes, need to comment "singlespace" from bibliography
\pagenumbering{arabic}
%CHAPTERS INCLUDED HERE
\include{chapters/chap1/chapter1_standalone}
\include{chapters/chap2/chapter2_standalone}
\include{chapters/chap3/chapter3_standalone}
%\include{chapters/chap4/chapter4_standalone}
\addcontentsline{toc}{chapter}{Appendix: Compilation of Impact Test Data} % Adds Appendix to the TOC
\include{chapters/appendix/appendixA}
%%%%%%%%%%%%%%%%%%%
\addcontentsline{toc}{chapter}{REFERENCES} % Add Bibliography into table of contents 12/05/05 Burcin Donmez
%%%%%%%%%%%%%%%%%%%
\vspace{0.5in}
%DIFFERENT LOCATIONS FOR THE BIB FILE
%\bibliography{E:/tex/jabref_bib/ref} % REFERENCES - Bibliography
%\bibliography{C:/latex_docs/mythesis/biblio/biblio.bib} % REFERENCES - Bibliography
%\bibliography{C:/latex_docs/final_thesis/biblio/biblio.bib} % REFERENCES - Bibliography
\begin{singlespace}
\bibliography{biblio} % REFERENCES - Bibliography
\end{singlespace}
\end{document}