I’m writing the support material for my thesis defense. They request my name and the page numbers in the top of all pages. In latex, you can do this easily with “fancyhdr”
usepackage{fancyhdr}
pagestyle{fancyplain}
lhead{Claus Aranha - The University of Tokyo}
chead{}
rhead{thepage}
rfoot{}
cfoot{}
lfoot{}
In the preamble. The fancyplain style is supposed to apply the header and footer to the first page as well. But it seems that from the second page onwards, there is a line separating the header from the contents, but the first page does not have this line (but it DOES have the special heading that I set up).
I think it would be nice to have the line in the first page as well. Anyone knows how?