Stefan,Stefan_K wrote:Hi Humberto,
important is to write \thispagestyle{empty} at the right place. Not in the preamble. After \begin{document} and before the second page starts.
But as you don't need plain pagestyle at all you can set it to be equal to empty. Write into your preamble before \begin{document}:StefanCode: Select all
\makeatletter \let\ps@plain\ps@empty \makeatother
Thanks it works very well. The last question that I have is how I can change the heading References to 6. REFERENCES and centered. I am using:
\begin{thebibliography}{9}
\bibitem{Clarke}
F. H. Clarke,
\newblock {\em Optimization and Nonsmooth Analysis},
SIAM, Classics in Applied Mathematics, Philadelphia, 1990.
\end{thebibliography}
Humberto