-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
42 lines (31 loc) · 1006 Bytes
/
main.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
% Gets the style guide to apply to the document such as font sizes for various wrappers, spacing before and after sections, etc.
% \documentclass[letterpaper,twoside,openright]{document-formatting} %this is for double sided alternating the extra margin on left and right pages
\documentclass[letterpaper,onesided,openright]{document-formatting}
% NOTE THAT THE SECOND LAST LINE OF DOCUMENT-FORMATTING.CLS LETS YOU CHANGE THE CITATION STYLE
% Hides addition of external plugins
\input{Sections/0-header}\unskip
\begin{document}
% Title Page
\input{Sections/1-title}
% Table of Contents if you want it.
% \newpage
% \input{Sections/00-table-of-contents}
% Introduction
\newpage
\input{Sections/2-introduction}
% Theory
\newpage
\input{Sections/3-theory}
% Methods and Materials
\newpage
\input{Sections/4-methods}
% Results
\clearpage
\input{Sections/5-results}
% Discussion and Conclusion
\clearpage
\input{Sections/6-discussion}
% References
\newpage
\input{Sections/7-references}
\end{document}