0

I have a title spread on three lines:

\begin{center}
{\textbf{MY \\BEAUTIFUL \\TITLE}}
\end{center}

enter image description here

but as soon as I want to change the font size, it messes up the interline space:

\begin{center}
{\Huge\textbf{MY \\BEAUTIFUL \\TITLE}}
\end{center}

enter image description here

(notice the different space between the first and second line, and the second and third line).

Now if I remove the center environment and leave the Huge command, the interline is fine but I get a blank character before my first word:

{\Huge\textbf{MY \\BEAUTIFUL \\TITLE}}

enter image description here

So it seems like a weird interaction between the center environment and the font command? I’ve been trying to fix this for 3 hours now. What am I missing?

Sulli
  • 133

1 Answers1

1
 \begin{center} {\Huge\textbf{MY \\BEAUTIFUL \\TITLE}\par} \end{center} 
c.p.
  • 4,636
  • This works, but why do I have to do this by hand? Isn’t this a basic task for LaTex? Is it because of the line breaks inside my title? And what if I want to increase the interline space after that? Do I have to just "try" with different values until I’m happy? – Sulli Mar 06 '23 at 14:03
  • this does not correct the cause of the error, the missing \par – David Carlisle Mar 06 '23 at 14:10
  • @Sulli it does it automatically if \par is there, as David said – c.p. Mar 06 '23 at 17:00