-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathReportTemplate.tex
More file actions
139 lines (101 loc) · 3.45 KB
/
Copy pathReportTemplate.tex
File metadata and controls
139 lines (101 loc) · 3.45 KB
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
133
134
135
136
137
\documentclass[12pt]{article}
%Declare all packages used
\usepackage{graphicx}
\usepackage[affil-it]{authblk}
\usepackage[margin=0.75in]{geometry}
\usepackage{fancyhdr}
\usepackage{ragged2e}
\usepackage{rotating}
\usepackage[section]{placeins}
%Decalre bib style
\bibliographystyle{unsrt}
%formate the affiliation and author stuff
\renewcommand\Authfont{\fontsize{12}{14.4}\selectfont}
\renewcommand\Affilfont{\fontsize{10}{10.8}\itshape}
%Make the title with the CTT logo above
\title{
%Use vspace to move title down the page a bit
\vspace{2cm}
\includegraphics[scale=0.70]{Figures/ctt_logo_300.png}~
\\[1cm]
\textbf{Technical Report Title}
}
%%%% AUTHORS %%%%
\author[1]{S.~Burcher}
%%%% AFFILIATIONS %%%%
\affil[1]{Cellular Tracking Technologies, Rio Grande, NJ 08242}
%Enter the report number here
\newcommand{\reportNumber}{000000}
%Fancy header/footer formatting for title page, disclaimer, ect.
\fancypagestyle{fancyfront}{
\renewcommand{\footrulewidth}{0.4pt}% default is 0pt
\fancyhf{}
\rhead{TR-\reportNumber}
%\fancyhead[CE,CO]{OFFICIAL USE ONLY}
%\fancyfoot[CE,CO]{OFFICIAL USE ONLY}
\rfoot{\thepage}
}
%Fancy header/footer formatting for main document
\fancypagestyle{fancymain}{
\renewcommand{\footrulewidth}{0.4pt}% default is 0pt
\fancyhf{}
\rhead{TR-\reportNumber}
%\fancyhead[CE,CO]{OFFICIAL USE ONLY}
%\fancyfoot[CE,CO]{OFFICIAL USE ONLY}
\rfoot{Page \thepage}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%% BEGIN DOCUMENT %%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%% START OF FRONT MATTER %%%%
\begin{document}
%Roman numeral page numbering for the front matter
\pagenumbering{roman}
\maketitle
\thispagestyle{fancyfront}
\vspace*{0.1cm}
\centering
\newpage
%This is the disclaimer page
\thispagestyle{fancyfront}
%Use vpsace to move the disclaimer down the page a bit
\vspace*{2cm}
\centering
\paragraph*{DISCLAIMER}
\begin{center}
\justify
All information contained herein is, and remains the property of Cellular Tracking Technologies, LLC and its suppliers, if any. The intellectual and technical concepts contained herein are proprietary to Cellular Tracking Technologies, LLC and its suppliers and are protected by trade secret or copyright law. Dissemination of this information or reproduction of this material is strictly forbidden unless prior written permission is obtained from Cellular Tracking Technologies, LLC.
\end{center}
\newpage
%This is the table of contents page
\raggedright
\justify
\thispagestyle{fancyfront}
\tableofcontents
%%%% END OF FRONT MATTER %%%%
\newpage
%Start of main document
\pagestyle{fancymain}
%Arabic numeral page numbering for the front matter
\pagenumbering{arabic}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{Introduction}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Here is the introduction section.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{Another Section}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Some text in the other section. This is a citation \cite{ctt_website}.
\begin{figure}[ht]
\centering
\includegraphics[scale=1.0]{Figures/bird.jpg}
\caption{This is a bird.}
\end{figure}
\subsection{This is a subsection}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newpage
\bibliography{references}
\end{document}