Page LayoutAvoid header in appendix

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
felipoc
Posts: 6
Joined: Thu Dec 25, 2008 1:35 pm

Avoid header in appendix

Post by felipoc »

Hi guys,

I´m using the commands (\addcontentsline{toc}{chapter}{Anhang}, \input{Anhang_eigen.tex} ) to create the appendix.


The file Anhang_eigen.tex looks like this:( \begin{appendix} CONTENT \end{appendix})

Unfortunately the pdf-output-file contains the header line of the previous part, the bibliography (\bibliographystyle{babalpha}, \bibliography{Literatur}).

How can I avoid, that the header of the bibliography appears in the appendix ?

Also the appendix hasn´t the Capital letters as page numbers as announced in my latex-book. Why that ?

Thank you for your help, Philipp

Recommended reading 2024:

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

NEW: TikZ book now 40% off at Amazon.com for a short time.

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

Avoid header in appendix

Post by localghost »

Omit the appendix environment in the included file and use this command sequence instead.

Code: Select all

\clearpage
\appendix
\addcontentsline{toc}{chapter}{Anhang}   % perhaps this line is better placed in the included file
\include{Anhang_eigen.tex}
For the header you could use the \markboth command.


Best regards
Thorsten¹
Post Reply