I am writing a short document which I need to fit all on 1 page. I am trying to squeeze everything on there, and because I'm short of space, I wanted my name and title just to be a header right at the top.
I have used:
\usepackage{fancyhdr}
\pagestyle{fancy}
\lhead{\footnotesize \parbox{11cm}{Title of Document} }
\rhead{\footnotesize {My Name} }
\renewcommand\headheight{14pt}
to do this. This, however, has introduced a page number at the bottom of the page that I don't want. I have used:
\usepackage{nopageno}
but it doesn't seem to help.
Finally, My text begins immediately under the header, but I would like a blank line of two. I have tried
\newline
and also
\vspace
but neither seems to work.
Any help would be appreciated.
\textheight
a little larger, rather than trying to use a solution involing headers? – Steven B. Segletes Jun 11 '13 at 11:44fancyhdr
as empty. There are 6 fields by default l,r and c for head and foot. Example:\rfoot{}
. This would also allow you to be aware of which fields exist and what you have put in them. – Ludovic C. Jun 11 '13 at 12:58