Page LayoutHow to add appendix to each chapter

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
juiceorange
Posts: 1
Joined: Sun Jun 19, 2011 10:28 pm

How to add appendix to each chapter

Post by juiceorange »

I am writing a report that consists three separate projects in one document. I am trying to add appendix to each chapter instead of a big appendix at the end of the whole document. Is there any way that I can achieve this? Thanks!

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

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

How to add appendix to each chapter

Post by localghost »

You can give the appendix package a try.

Code: Select all

\documentclass[11pt,a4paper,english]{report}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{appendix}
\usepackage{blindtext}

\begin{document}
  \tableofcontents

  \blinddocument

  \begin{subappendices}
    \section{Appendix for this Chapter}
    \blindtext
  \end{subappendices}
\end{document}
Details about customization in the package manual.


Best regards and welcome to the board
Thorsten
Post Reply