I have following problem:
I want to use my personal page layout, like margins, text width, etc. But except the cover and the title page.
I think that the best solution for setting the page layout is to use is this (correct me if i am wrong).
\usepackage{geometry} \geometry{...}
It works fine, but I really don't want to use the same page layout for the cover and the title page - the blank geometry is the best for cover and title page.
My code looks like this.
\documentclass[12pt,a4paper]{report} \usepackage[utf8]{inputenc} \usepackage[english]{babel} \usepackage{setspace} \linespread{1.5} \usepackage{titlesec} \titleformat{\chapter} {\normalfont\LARGE\bfseries}{\thechapter}{1em}{} \titlespacing*{\chapter}{0pt}{3.5ex plus 1ex minus .2ex}{2.3ex plus .2ex} \usepackage{cite} \usepackage{indentfirst} \usepackage{geometry} \geometry{ a4paper, total={210mm,297mm}, left=40mm, right=20mm, top=20mm, bottom=20mm, } \begin{document} \include{cover} \include{title_page} \chapter{Introduction} .... \end{document}