-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathchapter1.tex
52 lines (49 loc) · 1.34 KB
/
chapter1.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
\section{Introduction}
\label{section_intro}
Block Quotations (quotation and quote environments) are supposed to be
single-spaced with each entry, and double-spaced between. The class file does
this automatically. For example:
\begin{quote}
Dummy quote. \blindtext
\end{quote}
\begin{quotation}
Dummy quotation. \blindtext
\end{quotation}
\section{Motivating Example}
Table \ref{tab:label} shows stuff. \blindtext
\begin{table}[tp]
\centering
\caption[Table heading]{Table heading goes on top of the table}
\label{tab:label}
\renewcommand{\arraystretch}{1.2} % single-spacing 1.2 is visually more
% appealing than 1
\begin{tabular}{@{}lll@{}}
Tables & should \\
Be & double\\
spaced & unless & \\
they are & long\\
This & table\\
is & getting\\
long\\
so & I\\
manually\\
set &it \\
to & single\\
spacing using
\end{tabular}
\end{table}
Table \ref{tab:label2} shows stuff also.
\begin{table}[tp]
\centering
\caption{Use consistent format for captions}
\label{tab:label2}
\renewcommand{\arraystretch}{2} % double-spacing
\begin{tabular}{@{}lllll@{}}
Table & should & be & placed\\
within & text, & as & close\\
to & its first mention\\
as & possible. & Not at the end\\
of a chapter & or dissertation
\end{tabular}
\end{table}
\blindtext[2]