\maketitle
(why?).This first MWE works correctly. That is, it prints the copyright page as a separate page. But it has the wrong title page.
Code: Select all
\documentclass[12pt,fleqn,oneside]{article}
\usepackage{datetime}
\usepackage{setspace}
\usepackage[top=1.0in, bottom=1.0in, left=1.5in, right=1.0in]{geometry}
\newdateformat{mydate}{\monthname[\THEMONTH] \THEYEAR}
\title{FPU LATTICES IN MULTIDIMENSIONS}
\author{Jeffrey A Schwarz}
\date{\mydate\today}
\begin{document}
\begin{titlepage}
\maketitle
\thispagestyle{empty}
\end{titlepage}
%\null
\thispagestyle{empty}
\vfill
\date{\copyright\ \the\year\ Jeffrey A Schwarz. All Rights Reserved.}
\end{document}
Code: Select all
\documentclass[12pt,fleqn,oneside]{article}
\usepackage{datetime}
\usepackage{setspace}
\usepackage[top=1.0in, bottom=1.0in, left=1.5in, right=1.0in]{geometry}
\newdateformat{mydate}{\monthname[\THEMONTH] \THEYEAR}
\title{FPU LATTICES IN MULTIDIMENSIONS}
\author{Jeffrey A Schwarz}
\date{\mydate\today}
\begin{document}
This is where the title page was.
%\null
\thispagestyle{empty}
\vfill
\date{\copyright\ \the\year\ Jeffrey A Schwarz. All Rights Reserved.}
Where's the copyright statement?
\end{document}