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
Hi,
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
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
Last edited by BoudewijnD on Wed Aug 17, 2011 8:45 pm, edited 1 time in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.
-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
TOC on left page using the Book Class
If you have a look at book.cls, the only thing it does when processing the "openany" option is issue \@openrightfalse. You might try issuing the following:
It may not work, especially if the \@openright(false|true) macros only work inside book.cls, but it's worth a try.
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
Hey Kaiserkarl1,
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
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
How about "\renewcommand{\contentsname}{My Contents}"?
-
- Posts: 60
- Joined: Wed Nov 18, 2009 4:18 pm
TOC on left page using the Book Class
That i tried but fails I now use the to redfine the toc and that works.
Code: Select all
\def
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
TOC on left page using the Book Class
If you use babel, such as by
then use \addto, to override babel language settings:
Stefan
Code: Select all
\usepackage[english]{babel}
Code: Select all
\addto\captionsenglish{%
\renewcommand\contentsname{Table of Contents}%
}
LaTeX.org admin