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?
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?
Use the double backslash:
\documentclass{article}
\begin{document}
\title{First line of title \\
Second line of title}\maketitle
\end{document}
apa6class and its somewhat peculiar [tag:titles] behaviour. – lockstep May 17 '12 at 17:52