-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMARStemplate.tex
130 lines (95 loc) · 3.17 KB
/
MARStemplate.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
\documentclass[12pt, titlepage]{MARSarticle}
\renewcommand{\rmdefault}{phv}
% ---------------------------------------------------------------------------- %
% Set the title, author, and date
%
\title{TITLE OF REPORT}
\author{Scott Nokleby}
\date{} % Leave this here but empty
% ---------------------------------------------------------------------------- %
% These are mandatory
%
\MARSnum{2006-001} % e.g. \MARSnum{MARS2006-0420}
\MARSprintDate{Decemeber 2006}
\MARSauthor{Scott Nokleby} % One line, separated by commas
\MARSreportType{CONFIDENTIAL}
% ---------------------------------------------------------------------------- %
% Start the document
%
\begin{document}
\maketitle
% ------------------------------------------------------------------------ %
% An Abstract is required for MARS reports
%
\begin{abstract}
ADD ABSTRACT HERE
\end{abstract}
% ------------------------------------------------------------------------ %
% An Acknowledgment section is optional but important
%
\clearpage
%\chapter*{Acknowledgment}
% ------------------------------------------------------------------------ %
% The table of contents and list of figures and tables
%
% \cleardoublepage % TOC needs to start on an odd page
% \tableofcontents
% \listoffigures
% \listoftables
% ---------------------------------------------------------------------- %
% An optional preface or Foreword
% \clearpage
%\chapter*{Preface}
% \addcontentsline{toc}{chapter}{Preface}
% ---------------------------------------------------------------------- %
% An optional executive summary
% \clearpage
%\chapter*{Summary}
% \addcontentsline{toc}{chapter}{Summary}
% ---------------------------------------------------------------------- %
% An optional glossary. We don't want it to be numbered
% \clearpage
%\chapter*{Nomenclature}
% \addcontentsline{toc}{chapter}{Nomenclature}
% \begin{description}
% \item[Term 1]
% Description
% \item[Term 2]
% Description
% \item[Term 3]
% Description
% \end{description}
% ---------------------------------------------------------------------- %
% This is where the body of the report begins; usually with an Introduction
%
% \MARSmain % Start the main part of the report
%\chapter{Introduction}\label{Intro}
\section{Introduction}
\section{Section One}
\section{Section Two}
\section{Conclusion}
\begin{table}[ht]
\centering
\caption[Short Title]{Full caption}
\bigskip
\begin{tabular}{|l|c|l|c|}
\end{tabular}
\label{tab:1}
\end{table}
% ---------------------------------------------------------------------- %
% References
%
\clearpage
% If hyperref is included, then \phantomsection is already defined.
% If not, we need to define it.
\providecommand*{\phantomsection}{}
\phantomsection
\addcontentsline{toc}{chapter}{References}
\bibliographystyle{plain}
\bibliography{} %Add your .bib file here.
% ---------------------------------------------------------------------- %
%
\appendix
%\chapter{}
% \printindex
\end{document}