Page LayoutAppendix formatting

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
andre220
Posts: 2
Joined: Mon Nov 25, 2013 1:10 am

Appendix formatting

Post by andre220 »

Hi,

I want to know if there is a way to add an appendix item outside of the appendix.

For example:

Code: Select all

\mainmatter

\include{chapter1}
\appendix
\include{report-contents}
\include{chapter2}
...
Thank you.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Appendix formatting

Post by Johannes_B »

Something like

Code: Select all

\documentclass{book}
\usepackage{appendix}
\begin{document}

\chapter{Regular Chapter}
\begin{appendices}
\chapter{Some Appendix}
The contents...
\end{appendices}

\end{document}
using the appendix package.

If this is not what you want, please clarify your question by providing a minimal working example
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
andre220
Posts: 2
Joined: Mon Nov 25, 2013 1:10 am

Re: Appendix formatting

Post by andre220 »

That is all I needed, thank you.
Post Reply