Generaltwoside report wont start title on a right page - help!

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
User avatar
cyberbushi
Posts: 5
Joined: Thu Aug 14, 2008 5:02 am

twoside report wont start title on a right page - help!

Post by cyberbushi »

Hey guys, I am writing my final thesis and I need help: I use the twoside option and no matter what I do I cannot get the title page to have the margin at the left, as it should be. I tried the beginleft beginright beginany options, but it didnt change anything. Here is my header:

Code: Select all

\documentclass[12pt,letterpaper,twoside]{report}

\usepackage[pdftex]{graphicx}
\usepackage{float}
\usepackage[latin1]{inputenc}
\usepackage[bookmarks=true,bookmarksnumbered=true,colorlinks=false,pdfborder=000,breaklinks=true]{hyperref}
\usepackage{eurosym} 
\usepackage{listings}
\usepackage{color}
\definecolor{Listing}{cmyk}{0,0,0.1,0.1}

\newcommand{\HRule}{\rule{\linewidth}{0.5mm}}

\begin{document}
\pagenumbering{roman}

\input{title.tex}
\cleardoublepage
\end{document}
Pleas help!

Thanks,

Tobias
Last edited by cyberbushi on Sun Sep 21, 2008 10:24 pm, edited 2 times in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

twoside report wont start title on a right page - help!

Post by localghost »

Please create a full minimal working example (MWE) and let us see what's in title.tex for a better understanding of the problem.


Best regards
Thorsten¹
User avatar
cyberbushi
Posts: 5
Joined: Thu Aug 14, 2008 5:02 am

twoside report wont start title on a right page - help!

Post by cyberbushi »

title.tex:

Code: Select all

\begin{titlepage}
 
\begin{flushleft}
 \textsc{Hochschule}\\[0.5cm]
\textsc{University}\\[2cm]
\end{flushleft}

\begin{center}
\textsc{\LARGE Diplomarbeit}\\[0.5cm] 
\textsc{\Large Final Thesis}\\[0.5cm]
\HRule \\[0.4cm]
{ \huge \bfseries TITEL}\\[0.4cm]
\HRule \\[1.5cm]

\begin{minipage}{0.4\textwidth}
\begin{flushleft} \large
\emph{Author:}\\
Tobias \\
Matr. 222 \\
16 Evergreen Avenue\\
Springfield\\
tobias@xyt \\

\end{flushleft}
\end{minipage}
\begin{minipage}{0.4\textwidth}
\begin{flushright} \large
\emph{Advisor:} \\
Prof. Dr. \\
\emph{External Co-Advisor:} \\
Person \\
Firma
\end{flushright}
\end{minipage}
 
\vfill
 
{\large \today}
 
\end{center}
 
\end{titlepage}
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

twoside report wont start title on a right page - help!

Post by localghost »

Paper and page dimensions can be set with geometry.

Code: Select all

\usepackage[bindingoffset=1cm,centering,includeheadfoot,margin=2cm]{geometry}
Perhaps you should take a look at other document classes [1]. These classes allow much better settings of the type area.

[1] The TeX Catalogue Online, Topic Index - Alternative Document Classes
User avatar
cyberbushi
Posts: 5
Joined: Thu Aug 14, 2008 5:02 am

twoside report wont start title on a right page - help!

Post by cyberbushi »

P E R F E C T! Thanks a lot! Now it works fine!
I am using:

Code: Select all

\usepackage[bindingoffset=2cm,centering,includeheadfoot,margin=3cm]{geometry}
Post Reply