17

My document has a long title, so I want the title spans two lines.

I've use this:

\title{my title that must be in two or more lines}

but it doesn't work. How can I get it done?

slackmart
  • 557

2 Answers2

28

Use the double backslash:

\documentclass{article}
\begin{document}
\title{First line of title \\
Second line of title}\maketitle
\end{document}
David Carlisle
  • 757,742
felixgaal
  • 758
8

Use the line break operator \\.