General ⇒ Appendix or Annex
Appendix or Annex
I have made a book class document with Chapters, sections, and so on. Now I want to add just one Appendix or culd be an Annex (I don't require to follow appendix rules).
I have written a section named Apéndice.tex (\chapter{Apéndice}
How are de set of commands to include above section and to include it in the Table of contents?
Thank you very much.
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
Appendix or Annex
just write the
\appendix
command before the appendix chapter; this resets the numbering and switches to alphanumeric numbering, starting with A.Stefan
Appendix or Annex
That is what I've done, but there is a problem:
* An empty page appears showing the title:
Apéndica A
Apéndice
My code is:
Code: Select all
\newpage\cleardoublepage\appendix\markright{\MakeUppercase{Apéndice}}\chapter{Apéndice}\include{sections.tex/Apéndice}\addcontentsline{toc}{chapter}{Apéndice}
Thanks a lot
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
Appendix or Annex
the
\include
command starts always a new page. It's designed for chapters, but the \chapter
command should be in the included file, not before. That's why you got an empty page. Just move the \chapter
command into the included file.An appendix chapter title "Apéndice" is perhaps not perfect. It's like writing
\chapter{Chapter}
. 
What do you think?
Stefan
Appendix or Annex
Thanks a lot for your recommendation and support.
Finally, this is what I have done to have One Appendix with Sections:
Code: Select all
\appendix\renewcommand{\thechapter}{\Alph{chapter}}\renewcommand{\thesection}{\Roman{section}}\chapter{Matrices, Operadores, Tablas}\include{sections.tex/Matrices de Pauli}\include{sections.tex/Acción de los operadores de Espín}\include{sections.tex/Cambio de base}\include{sections.tex/Componente de Espín en dirección hat(n)}\include{sections.tex/Tablas de multiplicación de Operadores de Espín}
**********************************************************
Apéndice A
Matrices, Operadores, Tablas
I Matrices de Pauli
Acción de los Operadores de Espín
... etc.
I really appreciate your support.
Kind regards,
Jon
Appendix or Annex
II Acción de los Operadores...