[Tex/LaTex] Having 1.5 linespacing except for the title page

line-spacing

Hey i would like to use \linespread{1.5} for a simple 1.5x linespacing. Unfortunately this breaks the templates title pages. Is there a simple solution for this?

Those pages age build like this:

\begin{titlepage}
\oddsidemargin=\evensidemargin\relax
  \textwidth=\dimexpr\paperwidth-2\evensidemargin-2in\relax
  \hsize=\textwidth\relax

  \centering

  \vspace{5mm}
  {\huge\MakeUppercase{\getFaculty{}}}\\

  \vspace{5mm}
  {\large\MakeUppercase{\getUniversity{}}}\\
\end{titlepage}

And then called with \input{pages/title} in the main.tex under \frontmatter{}. Then there comes \mainmatter{} with my chapters. Could I use the linespread command only for this part somehow?

Right now there is a \linespread{1.05} in my settings.tex and I guess it has some purpose, too. ¯\_(ツ)_/¯

Best Answer

Like @Bernard said in his comment: First import setspace, and then use \setstretch{1.5} before your main part and everything works fine. Thank you!

Related Question