I have a report in LaTeX and I used the following commands to create my Application, however, my lecturer states that any dividing pages should be numbered.
\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 separator page, but still puts the page number in the footer. There is no page number in TOC as expected.
How to remove it from the footer?
source share