I want to remove the number pages from the file. How can I do? Please help me.
Asked
Active
Viewed 171 times
1 Answers
0
You can gobble the numbers this way:
\documentclass{article}
\pagenumbering{gobble}
\usepackage{lipsum} % not needed in real document
\begin{document}
\lipsum[1-40] % dummy text
\end{document}
Of course, better option is to use a pagestyle that removes them:
\documentclass{article}
\pagestyle{empty}
\usepackage{lipsum} % not needed in real document
\begin{document}
\lipsum[1-40] % dummy text
\end{document}
yo'
- 51,322
pagestyle{empty}would be the easiest thing, but however, this depends on the class or style file. – Mar 24 '14 at 15:07