No page number for divider pages in LaTeX
        Posted  
        
            by joec
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by joec
        
        
        
        Published on 2010-04-13T18:07:57Z
        Indexed on 
            2010/04/13
            18:13 UTC
        
        
        Read the original article
        Hit count: 691
        
I have a report in LaTeX, and i have used the following commands to create my Appendix, however, my lecturer states that any divider pages should be unnumbered.
\documentclass{report}
   \usepackage{appendix}
   \begin{document}
       \include{chap1}
       \include{appendix}
   \end{document}
Then in appendix.tex
\appendix
\pagestyle{empty}
\appendixpage
\noappendicestocpagenum
\addappheadtotoc
This creates the Appendices divider page, but still puts a page number on it in the footer. There is no page number in the TOC, as expected.
How can i remove it from the footer?
Thanks
© Stack Overflow or respective owner