Page Layout ⇒ Starting a twosided book with a right hand title page
Starting a twosided book with a right hand title page
I am making a twosided book. It is a hardbound book where opening the cover should reveal the title page, which will be a right-hand sided page (i.e. margins are wider on the right). The default is to have the title page start on a left-hand sided page with a blank page following on the right side.
Right now I am just using the default:
\documentclass[11pt,a4paper,twoside]{book}
Is there any way to start the book class with a right-hand title page?
Thank you very much,
Jason
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
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Starting a twosided book with a right hand title page
Code: Select all
\documentclass[11pt,a4paper,english]{book}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{blindtext}
\title{The Title}
\author{The Author}
\begin{document}
\maketitle
\
\frontmatter
\tableofcontents
\mainmatter
\Blinddocument
\backmatter
\appendix
\blinddocument
\end{document}Best regards and welcome to the board
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Starting a twosided book with a right hand title page
Thanks for taking a look! I think I have my lefts and rights mixed up. In the example you provided (which has the same formatting output as my document), the title page has a right margin that is about 3/4in larger than the left margin (i.e. the binding is on the right). I want to start the book with the title page, such that the title page is the first page of the document and is bound from the left---meaning the left side margin is wider than the right side. I'm inserting an image I drew of what I'm hoping the final product will look like (pardon my poor drawing skills). Right now, I can only get the document to start with the title page binding from the left, as in your example.
Code: Select all
\documentclass[11pt,a4paper,twoside]{book}%
\usepackage{amsmath}%
\usepackage{amsfonts}%
\usepackage{amssymb}%
\usepackage{graphicx}
\usepackage{natbib}
\bibliographystyle{chicago}
%\bibpunct{(}{)}{;}{a}{,}{,}
%%%%%%OTHER PACKAGES%%%%%%%%%%
\usepackage{setspace}
\usepackage{subfigure}
\usepackage{rotating}
\usepackage{hyperref}
\hypersetup{
colorlinks,%
citecolor=black,%
filecolor=black,%
linkcolor=black,%
urlcolor=black}
\usepackage[all]{xy}
\usepackage{blindtext}
%----------------------------------------------------------
%----------------------------------------------------------
\begin{document}
\frontmatter
\title{Title}
\author{Author}
\date{\today}
\maketitle
\tableofcontents
\chapter*{Acknowledgements}
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
\chapter{Abstract}
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
\mainmatter
\Blinddocument
\backmatter
\appendix
\blinddocument
\end{document}
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Starting a twosided book with a right hand title page
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Starting a twosided book with a right hand title page
Code: Select all
\documentclass[11pt,a4paper,twoside,openright]{book}
\usepackage[lmargin=142pt,rmargin=95pt,tmargin=127pt,bmargin=123pt]{geometry}- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Starting a twosided book with a right hand title page
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10