So here it goes once again:
I am currently using this template link
What I want to do is to have different linespacing and fontsize settings for the title page and the main document
The title page should be 11pt and singlelinespacing and the main document should be 12pt and onehalfspacing.
What i have tried is to use \setlinespace{1.5} for each chapter, but this doesn't work.
------Edit------
I should also add the document class is BOOK, so in theory fontsize and linespacing for the titlepage should be 11pt and singlelinespacing
And additionally the chapters should be 12pt and onehalfspacing it that makes it clearer.
book? Basically, set what you want for the body of the document e.g.12ptas a class option. Then usesetspaceto get one-half spacing. Then do the titlepage. – cfr May 27 '18 at 22:21\fontsize{11pt}{12}into the title page enviroment, setting\documentclass[12pt,\singlelinespace]and then before I include the chapters adding\onehalfspacing. As I said it kind of does what i want, but I also think that there could be a more elegant way to write this – Peter Festerling May 28 '18 at 05:04