Search found 4 matches

by ruh31
Sun Aug 19, 2012 11:37 am
Forum: Page Layout
Topic: Writing on the Back of Part Pages
Replies: 4
Views: 4409

Writing on the Back of Part Pages

I found a more robust and way easier way to do it. How I am solving it now:

Code: Select all

\makeatletter\@openrightfalse\makeatother
\part{Part Name}
This is the text I put on the back side of the part page
\makeatletter\@openrighttrue\makeatother
by ruh31
Sun Jul 01, 2012 11:44 am
Forum: Page Layout
Topic: Writing on the Back of Part Pages
Replies: 4
Views: 4409

Writing on the Back of Part Pages

I think I found a solution - this is what I did now:

\renewcommand*{\partheademptypage}{%
\if@twoside\if@openright
\null%
\thispagestyle{empty}%
\fi\fi
}
\part{Part Name}
\thispagestyle{plain}
This is the text I put on the back side of the part page
\renewcommand*{\partheademptypage}{%
\if ...
by ruh31
Sun Jul 01, 2012 10:34 am
Forum: Page Layout
Topic: Writing on the Back of Part Pages
Replies: 4
Views: 4409

Writing on the Back of Part Pages

Thanks for your reply. Unfortunately I am using »scrbook« from KOMA-Script as the class - do you also have a solution for that setting?
by ruh31
Sat Jun 30, 2012 3:44 pm
Forum: Page Layout
Topic: Writing on the Back of Part Pages
Replies: 4
Views: 4409

Writing on the Back of Part Pages

Hi,

I am writing a book two-sided and use part pages in between. Therefore those pages currently look like
Part 1: ABC
on the first page, then followed by an empty page. I would like to write text on that second, empty page - how can I do that? This should not affect the chapter behavior or ...