-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path09-chapter-01.tex
34 lines (24 loc) · 877 Bytes
/
09-chapter-01.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
\chapter{A Chapter with a Mathematical Appendix}
\label{cha:has-app}
\Blindtext[1]
\section{A Section}
\Blindtext[1]
\section{Another Section}
\Blindtext[1]
%%%%%%%%%% APPENDIX %%%%%%%%%%
% Redefine sectioning as letters
\setcounter{section}{0}
\let\oldthesection\thesection
\renewcommand{\thesection}{\thechapter.\Alph{section}}
\section{Appendix to Chapter~\ref{cha:has-app}}
Sometimes you might want a chapter-specific appendix numbered separately from
the section numbers in the main text.
This is especially useful when you are dealing with numbered equations or
theorems, and want a way to denote that a result lives in the appendix.
See the source code for this chapter for how this is done.
% Go back to the old section numbering for future chapters
\let\thesection\oldthesection
%%% Local Variables:
%%% mode: latex
%%% TeX-master: "dissertation"
%%% End: