I am new to Latex. I am using MikTex 2.8, WinEdt 6, JABREF 2.6 and Windows Vista. I am creating PDFs, working from a template:
http://www-h.eng.cam.ac.uk/help/tpl/tex ... PSnPDF.zip
The template is a bit complex, but in outline I have chapters and appendices as can be seen here:
Code: Select all
\include{Dedication/dedication}
\include{Acknowledgement/acknowledgement}
\include{Abstract/abstract}
\tableofcontents
\listoffigures
\listoftables
\printnomenclature %% Print the nomenclature
\addcontentsline{toc}{chapter}{Nomenclature}
\mainmatter % book mode only
\include{Introduction/introduction}
\include{Chapter1/chapter1}
\include{Chapter2/chapter2}
\include{Chapter3/chapter3}
\include{Chapter4/chapter4}
\include{Chapter5/chapter5}
\include{Chapter6/chapter6}
\include{Chapter7/chapter7}
\include{Conclusions/conclusions}
\backmatter % book mode only
\appendix
\include{Appendix1/appendix1}
\include{Appendix2/appendix2}
\include{Appendix3/appendix3}
Code: Select all
\begin{subappendices}
\chapter{Appendix A: stuff}
\section{Introduction}
Blah
\section{First Paragraph}
And now I begin my first chapter here ...
\section{Conclusions}
blah
\end{subappendices}
Appendix A: stuff 92
.A Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 92
.B Data Quality . . . . . . . . . . . . . . . . . . 94
.C Data . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 94
Appendix B: Engine 103
.A Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 103
.B feedback . . . . . . . . . . . . . . . . . . . . 103
.C Cost . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 103
.C.1 Cost Data. . . . . . . . . . . . . . . . . . . . . . . . . . . . 103
.C.2 Cost Models . . . . . . . . . . . . . . . . . . . . . . . 103
and so on. What I would like to see is A1, A2,A3.... for Appendix A. And then B1, B2.... for appendix B and so on.
I have read the similiar entries on here that have similiar problems but have not been able to fix it. Any help very gratefully recieved.
Many Thanks!