I am trying to combine three papers written in the article class into one document. Therefore, it is necessary to define three titlepages that contain the authors, the date and the abstract of the respective work. Here is an example:
\documentclass{article}
\usepackage{graphicx}
\usepackage{float}
\usepackage{mathtools}
\usepackage{titling}
\begin{document}
% ----------------------- Article 1 -----------------------
\title{Title 1}
\author{John Doe\thanks{To Horst}}
\date{01.01.2017}
\maketitle
\begin{figure}[H]
\centering
\includegraphics[width=0.8\textwidth]{example-image-golden}
\caption{Caption}
\end{figure}
\begin{equation}
a^2+b^2=c^2
\end{equation}
\newpage
% ----------------------- Article 2 -----------------------
\title{Title 2}
\author{John Doe\thanks{Petra}}
\date{01.01.2017}
\maketitle
\begin{figure}[H]
\centering
\includegraphics[width=0.8\textwidth]{example-image-golden}
\caption{Caption}
\end{figure}
\begin{equation}
a^2+b^2=c^2
\end{equation}
\newpage
% ----------------------- Article 3 -----------------------
\title{Title 3}
\author{John Doe\thanks{bla bla}}
\date{01.01.2017}
\maketitle
\begin{figure}[H]
\centering
\includegraphics[width=0.8\textwidth]{example-image-golden}
\caption{Caption}
\end{figure}
\begin{equation}
a^2+b^2=c^2
\end{equation}
\end{document}
I would like to...
- avoid the reappearance of the thank notes from other titles
- avoid any footnotemarks attached to the \thanks
Any advice is highly appreciated. Thanks.
