Hi everyone,
This is my first post. I am writing my masters thesis, which is comprised of chapters in Lyx. I have 4 appendices, and each one is a separate file, with the document class 'book'. Each appendix is a chapter. Now, in my parent file, when I include the 4 appendices files in my TOC, instead of appearing as Appendix A, Appendix B, Appendix C, etc, they all appear as Appendix A, Appendix A, Appendix A and so on. This did not happen with my main chapters (once included in the parent file, the headings changed to Chapter 1, Chapter 2, etc). How do I remedy this issue with the appendices, would anyone know? Any help would be very much appreciated.
LyX ⇒ Multiple Appendices
NEW: TikZ book now 40% off at Amazon.com for a short time.

-
- Posts: 126
- Joined: Sun Feb 13, 2011 8:36 pm
Multiple Appendices
This is a trivial assumption, but have you enclosed all appendices into one appendix environment like this
then the problem shouldn't occur. Or did you put a
into each of the appendix files. If you did that then the chapters within every appendix environment will start with A. (And hence if there is only one chapter in each appendix file, all will be named A.)
Code: Select all
\begin{appendix}
\input{lorem}
\input{ipsum}
\input{dolor}
\end{appendix}
Code: Select all
\begin{appendix}
% ...
\end{appendix}
I'm using pdfTeX, Version 3.1415926-1.40.10 (TeX Live 2009/Debian).
Re: Multiple Appendices
Thank you for your reply. Yes, I was not including all appendices within the same enviroment. Sorted now. Thank you 
