[Tex/LaTex] Times New Roman in LaTeX plus fancy header w/o page number on first page.

fontsheader-footer

Below is my file. I am trying to make sure that I am in 12pt Times New Roman font. Also, I am trying to get rid of the page number on this first page without getting rid of the header. If anyone has any suggestions for ensuring these two features in the document, it would be appreciated.

\documentclass[12pt]{article}

\usepackage[left=0.75in,right=0.75in,top=0.75in,bottom=0.75in]{geometry}
\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0pt}
%\pagestyle{empty}


\begin{document}

\rhead{John Doe \\ #########}

Hello, world!

\end{document} 

Best Answer

  • Q1. Times: \usepackage{mathptmx}

  • Q2. Is a bit harder. The simplest solution (but not the best) would be to write in the preamble something like

\cfoot{}
\usepackage{afterpage}
\AtBeginDocument{\afterpage{\cfoot{\thepage}}}
Related Question