[Tex/LaTex] Two title pages, one with author names and one without

titlestitling

I need to submit a report with two title pages – the first with paper title and authors, and the second with just the title, no author names. I used the titling package which lets me have two title pages, but the second title page is the same as the first. Is there a package or something that'll let me do what I need?

Thanks!

Best Answer

You can set the two titles in two separate titlepages:

enter image description here

\documentclass{report}
\begin{document}

% First title page
\begin{titlepage}
  \centering
  \vskip 60pt
  \LARGE This is the report title \par
  \vskip 3em
  \large Author A, Author B \par
  \vskip 1.5em
  \today
\end{titlepage}

% Second title page
\begin{titlepage}
  \centering
  \vskip 60pt
  \LARGE This is the report title \par
  \vskip 3em
  \large %Author A, Author B \par
  %\vskip 1.5em
  \today
\end{titlepage}

\chapter{A chapter}
\end{document}

The above definitions (skips and font sizes) were taken partially from report.cls.

There's no need to specifically rely on \maketitle or what happens to the contents when using macros \title, \author and/or \date.