How to make a title of two or more lines?
Use the double backslash:
\documentclass{article}
\begin{document}
\title{First line of title \\
Second line of title}\maketitle
\end{document}
Use the line break operator \\
.
Use the double backslash:
\documentclass{article}
\begin{document}
\title{First line of title \\
Second line of title}\maketitle
\end{document}
Use the line break operator \\
.