-
Notifications
You must be signed in to change notification settings - Fork 0
/
ExampleReport.tex
67 lines (52 loc) · 1.49 KB
/
ExampleReport.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
\documentclass{article}
\include{./ReportFormatting/packages}
\include{./ReportFormatting/styling}
\input{./ReportFormatting/reportmacros}
\begin{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% BEGIN FRONTMATTER
\setcounter{secnumdepth}{0}
\pagenumbering{gobble}
% Recommended sections to create
% Currently excluded for brevity
% Letter Of Transmittal
% Title Page
\setcounter{secnumdepth}{0}
% Recommended section
% Executive Summary
\setcounter{secnumdepth}{4}
\pagenumbering{roman}
\tableofcontents
\newpage
\listoffigures
\newpage
\listoftables
\newpage
\setcounter{secnumdepth}{4}
\pagenumbering{arabic}
\setcounter{page}{1}
\setcounter{section}{0}
% END FRONTMATTER
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% BEGIN MAIN BODY
\input{./Sections/demo}
% END MAIN BODY
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% BEGIN ENDMATTER
% References
\newpage
\bibliographystyle{unsrt}
\bibliography{ReportFormatting/examplebibliography}
\setcounter{secnumdepth}{1}
\titleformat{\section}{\large\bfseries}{\appendixname~\thesection: }{0.5em}{}
% Appendices
\begin{appendices}
% Your Appendices Here
\end{appendices}
% END ENDMATTER
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\end{document}