[Tex/LaTex] How to add a copyright page to the report class.

copyright

How do I add a copyright page, just after the title page in the report or book class? (Like in standard books about a block of a copyright license at the bottom of the page).

Best Answer

I prefer to add the "second page" automatically. This keeps the author interface clean.

I simply define a macro \def\secondpage

which I add to the \maketitle macro using \g@addto@macro.

When the author inserts the command \maketitle, it will also typeset the copyright page. Here is the code:

\documentclass{report}
\usepackage{fancyhdr}
\def\secondpage{\clearpage\null\vfill
\pagestyle{empty}
\begin{minipage}[b]{0.9\textwidth}
\footnotesize\raggedright
\setlength{\parskip}{0.5\baselineskip}
Copyright \copyright 2010--\the\year\ Dr Salty Pen\par
Permission is granted to copy, distribute and\slash or modify 
this document under the terms of the GNU \ldots. 
\end{minipage}
\vspace*{2\baselineskip}
\cleardoublepage
\rfoot{\thepage}}

\makeatletter
\g@addto@macro{\maketitle}{\secondpage}
\makeatother