[Tex/LaTex] Two \maketitles in one page

page-breakingtitlestwo-column

If I wanted to include two titles in one page, what can I do?
I've seen the titling package as this QA suggested, but the titles came out in separate pages.

\documentclass[twocolumn]{article}
\usepackage{titling}
\begin{document}
\title{First title} 
\author{Author1, Author2} 
{\let\newpage\relax\maketitle}
\title{Second title}
\author{Author1, Author2}
{\let\newpage\relax\maketitle}
Some text
\end{document}

What I want is:

Best Answer

The dual title in twocolumn mode causes the page breaks. Perhaps you'd just be interested in setting the title manually. Below I've taken the \maketitle constructions from the titling package code:

enter image description here

\documentclass[twocolumn]{article}
\usepackage{lipsum}% Just for this example
\begin{document}

\twocolumn[{
\begin{center}
  \LARGE First title
\end{center}
\vskip 2em
\begin{center}
  \large \lineskip .75em%
  \begin{tabular}[t]{c}
    Author1, Author2
  \end{tabular}\par
\end{center}
\begin{center}
  \large \today
\end{center}

\vspace{2\baselineskip}

\begin{center}
  \LARGE Second title
\end{center}
\vskip 2em
\begin{center}
  \large \lineskip .75em%
  \begin{tabular}[t]{c}
    Author1, Author2
  \end{tabular}\par
\end{center}
\begin{center}
  \large \today
\end{center}
}]

\lipsum[1-5]
\end{document}

You can now adjust the spacing and font to your liking.