-1

I want to remove the number pages from the file. How can I do? Please help me.

1 Answers1

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