Tagged Questions
2
votes
1answer
34 views
Empty page on the Part page
I'm using this on my document (scrartcl documentclass):
\usepackage{etoolbox}
\pretocmd{\section}{\cleardoubleevenemptypage}{}{}
\pretocmd{\part}{\cleardoubleevenemptypage}{}{}
This makes me get ...
1
vote
1answer
68 views
LyX: How to get the Part name to print in headers
I have a LyX article, structured with Parts -> Sections -> Subsections, and I want to print the Part name in the document header.
I am trying to get the part name with the following command, but it ...
7
votes
1answer
1k views
fancyhdr: How get part on even and chapter on odd pages
I am trying to use fancyhdr to set the part no. and name on my left pages and chapter no and name on the right pages.
My document is
...
4
votes
1answer
775 views
fancyhdr: putting part in fancyhdr
For my dissertation I've redefined \thechapter as \thepart because I'm only using parts, sections and subsections. With the code below I get the section as the right header but nothing on the left. ...
3
votes
2answers
177 views
Preventing the page number from appearing on the title page of part
Can someone help me to get rid of the page number at the bottom of the \part title page in the book document class?
Using
\renewcommand{\part}{\thispagestyle{empty}}
will change the font and ...
6
votes
1answer
1k views
How to modify Memoir class' headers/footers without redefining everything
I am using the memoir class for a multi-part (and multi-book) document. The class' headers and footers suit me fine for a twoside, openright document, but I'd like to add to them the following:
In ...
12
votes
4answers
236 views
Adding page number to the even page right after \part
Friends, I've never used \part{} before, so bear with me. =)
Consider the following code:
\documentclass[twoside]{book}
\usepackage{lipsum}
\begin{document}
\pagestyle{empty}
\begin{titlepage}
My ...
14
votes
5answers
5k views
How to get part name in LaTeX ?
Actually I am using the fancyhdr package, and trying to put the current part name in the right header.
I know that \rightmark and \leftmark are used to represent the current section and chapter ...