blob: 714742f42e911f8602ec5ccaae408be642199c21 (
plain)
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
|
\documentclass{estcpmm}
\usepackage{lipsum}
\begin{document}
\frontmatter
\logo[width=2in]{estcp}
\title[Sample Project]{Minition Management Sample Project}
\subtitle{Final Report}
\date{December 2008}
\projectno{234-567-789}
\internalno{Internal Number: 123}
\version{Sample-0-5-8}
\author{A.~U. Thor, University of Laputa\\
C.~O. Rrespondent, Brobdingnag School of Technology}
\maketitle
\tableofcontents
\listoffigures
\listoftables
\mainmatter
\section{Introduction}
\label{sec:intro}
\lipsum[1-12]
\begin{figure}
\centering
\includegraphics[width=2in]{red_corps_castle2}
\caption{US Army Corps of Engineers Logo}
\label{fig:castle}
\end{figure}
\section{Overview}
\subsection{First Subsection}
\lipsum[45-46]
\begin{table}[htbp]
\centering
\begin{tabular}{lll}
\hline
Size & in $\times$ in &mm $\times$ mm\\
\hline
Letter &8.5 $\times$ 11 &216 $\times$ 279\\
Legal &8.5 $\times$ 14 &216 $\times$ 356\\
Junior Legal &8 x 5 &\\
Ledger &17 $\times$ 11 &432 $\times$ 279\\
Tabloid &11 $\times$ 17 &279 $\times$ 432\\
\hline
\end{tabular}
\caption{North American Paper Sizes}
\label{tab:paper}
\end{table}
\subsection{Second Subsection}
\lipsum[36]
\subsection*{Unnumbered Subsection}
\lipsum[15]
\section*{Unnumbered Section}
\lipsum[76-90]
\end{document}
|