General ⇒ titlepage in twosided report
titlepage in twosided report
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
titlepage in twosided report
do you use \maketitle or the titlepage-environment?
The option notitlepage for the documentclass report could help, for example:
Code: Select all
\documentclass[a4paper,10pt,twoside,notitlepage]{report}
\begin{document}
\maketitle
\newpage
Text
\end{document}
Stefan
Re: titlepage in twosided report
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Re: titlepage in twosided report
In my example the titlepage is on page 1, an odd page, thats a "right page". I think that the margins are intended this way, the larger margin set outside. If you want to change that behaviour you can do it with the geometry package.
Have a look at some textbooks and compare the inner and outer margins of common twoside textbooks.
Stefan