Page Layout ⇒ TOC on left page using the Book Class
-
- Posts: 60
- Joined: Wed Nov 18, 2009 4:18 pm
TOC on left page using the Book Class
I know it is kind of strange but I would like to make an exception on the book class,. It normally starts with a chapter on the right page. But I want my TOC printed on the left page the rest of the chapters should start on the right hand side. Is there a way to trick latex in to doing just that??
\BoudewijnD
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
-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
TOC on left page using the Book Class
Code: Select all
\makeatletter
\@openrightfalse
\tableofcontents
\@openrighttrue
\makeatother
-
- Posts: 60
- Joined: Wed Nov 18, 2009 4:18 pm
Re: TOC on left page using the Book Class
Thanx that piece of code did the tric. The only thing is that I cann't change the name of the TOC it self.
\BoudewijnS
-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
Re: TOC on left page using the Book Class
-
- Posts: 60
- Joined: Wed Nov 18, 2009 4:18 pm
TOC on left page using the Book Class
Code: Select all
\def
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
TOC on left page using the Book Class
Code: Select all
\usepackage[english]{babel}
Code: Select all
\addto\captionsenglish{%
\renewcommand\contentsname{Table of Contents}%
}