2

I am trying to typeset a long title using a {\LARGE ...}-Block.

Here is a minimal example:

\documentclass{scrbook}

\begin{document}
    {\LARGE Very \\ Long \\ Title}
\end{document}

And the output of (latex + dvips + ps2pdf):

Output of the above example code

Question: How do I remove the vertical space between the first and the second line?

Info: If I use a {\normalsize...}-Block the spacing between the lines is as expected (equal vertical space between first and second line and between second and third line.

1 Answers1

0

One solution is to put the title into a flushleft, center or flushright environment as you desire the alignment.

\documentclass{scrbook}

\begin{document}
\begin{flushleft}
\LARGE Very \\ Long \\ Title
\end{flushleft}
\begin{center}
\LARGE Very \\ Long \\ Title
\end{center}
\begin{flushright}
\LARGE Very \\ Long \\ Title
\end{flushright}
\end{document}

enter image description here