I was trying to create a new title page for uni project. For that I took an online template and changed the text.
The problem now is, that the title wraps and has different line height in some lines.
Produced by this latex MVP
\documentclass[11pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\begin{document}
\begin{titlepage}
\rule{1pt}{\textheight}
\hspace{0.05\textwidth}
\parbox[b]{0.75\textwidth}{
\raggedright
{\Huge\bfseries Entwicklung einer agentenbasierten Simulationsplattform mithilfe des JavaScript Ökosystems, am Beispiel einer Verkehrssimulation.}\\[2\baselineskip]
{\large\textit{Subtitle}}\\[4\baselineskip]
{\Large\textsc{Name}}
\vspace{0.25\textheight}
{\noindent Organization}\\[\baselineskip]
}
\end{titlepage}
\end{document}
Can I force a consistent line height?
And one additional question, can I reenable latex automatic word breaking, so it better utilizes the available space?


ragged2eoffers\RaggedRight, which will still allow hyphenation. Much better than\raggedright, in my opinion. – Rmano Apr 21 '22 at 11:48ragged2eand specify '\Raggecright`, which doesn't suppress hyphenation but does keep word spaces at their "natural" width. – barbara beeton Apr 21 '22 at 11:48