I would like to just have a footer with "Page X of Y", but the following only works half the way for me:
\documentclass[a4paper]{article}
\setlength{\parskip}{\baselineskip}
\setlength{\parindent}{0pt}
\usepackage{fancyhdr}
\usepackage{lastpage}
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0pt}
\fancyhead{}
\cfoot{Page \thepage\ of \pageref{LastPage}}
\usepackage{graphicx}
\usepackage[left=2cm,right=2cm,top=2cm,bottom=2cm]{geometry}
\usepackage{lipsum}
\title{\bfseries \Huge Nothing Else Matters}
\author{my name \thanks{myname@mail.com} \\ { \vspace{-10pt} \normalsize \scshape Institute for Nothing, No University} \vspace*{10pt} }
\date{\today}
\begin{document}
\thispagestyle{fancy}
\maketitle
\lipsum[1-100]
\end{document}
Trouble
I would like to have the "Page X of Y" on the first page, which currently it only prints "1". And "Page X+1 of Y" to "Page Y of Y" are in the middle of the page, but not centered. It's like we have the page middle and it just write the footer to the left.
parskipandpageslts? – cfr Sep 05 '15 at 01:06