forked from lotten/uci-thesis-latex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appendix.tex
48 lines (40 loc) · 1.72 KB
/
appendix.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
% The original template (from Trevor) had a custom \appendix command,
% but I found it to break figure/table counters. I'm not sure how
% reliable my fix is, so I ended up reverting back to the standard
% latex version, and renaming the custom command to \myappendix. You
% can try both and see how things work out:
% 1) Call \appendix once, and then make each appendix a \chapter
% 2) Call \myappendix once, and then make each appendix a \section.
\appendix
\chapter{Appendix Title}
% Appendix sections, subsections etc should not appear in the table of
% contents. So set tocdepth to 0 and set it back to 2 at the end. Do
% this for each appendix.
\addtocontents{toc}{\protect\setcounter{tocdepth}{0}}
Supplementary material goes here. See for instance Figure
\ref{fig:quote}.
\section{Lorem Ipsum}
dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
commodo consequat. Duis aute irure dolor in reprehenderit in voluptate
velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint
occaecat cupidatat non proident, sunt in culpa qui officia deserunt
mollit anim id est laborum.
\begin{figure}
\centering
\begin{tabular}{l}
``I am glad I was up so late,\\
\quad{}for that's the reason I was up so early.''\\
\em \footnotesize William Shakespeare (1564-1616), British
dramatist, poet.\\
\em \footnotesize Cloten, in Cymbeline, act 2, sc. 3, l. 33-4.
\end{tabular}
\caption{A deep quote.}
\label{fig:quote}
\end{figure}
\addtocontents{toc}{\protect\setcounter{tocdepth}{2}}
%%% Local Variables: ***
%%% mode: latex ***
%%% TeX-master: "thesis.tex" ***
%%% End: ***