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
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- 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}
- 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