I print the title of my document like this:
\begin{titlepage}
\centering
\vspace*{\fill}
{\huge\bfseries \getTitle}
\vspace*{\fill}
{\huge\bfseries \getTitleGer}
\end{titlepage}
And the title is defined like this:
\newcommand*{\getTitle}{Unified Visualization for Execution Architectures of Big Data Frameworks}
\newcommand*{\getTitleGer}{Einheitliche Visualisierung der Ausf\"uhrungsarchitekturen von Big Data Frameworks}
Strangely enough LaTeX prints it like this. Why this strange squeezing, when the other title's line break is correctly done. When I change the input of the first title to anything else it correctly breaks the line, it seems to not do so for EXACTLY the title that I need (of course...)
After adding \par to each title it looks like this, with a too big spacing:
I want it to look like with the first image but with consistent spacing.



\parat the end:{\huge\bfseries \getTitle\par}and{\huge\bfseries \getTitleGer\par}. – Phelype Oleinik Jan 10 '19 at 14:58\hugeyou could use\fontsize{...}{...}\selectfontto set the size and baselineskip independently to whatever you want. Could you add a minimal working example (MWE) to your question? – samcarter_is_at_topanswers.xyz Jan 10 '19 at 15:16