{parts} is about the \part command which is one of the sectioning commands forming the logical structure of documents. This tag should only be used *in addition* to the more general {sectioning}.
2
votes
1answer
56 views
Parts and tocloft compatibility
Whenever I try using both tocloft (to be more precise \usepackage[titles]{tocloft} and \part{}, the table of contents doesn't render completely (it only renders until the first Part starts).
My ...
2
votes
1answer
35 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 ...
2
votes
0answers
50 views
Numbering figures and tables in part
Here is the deal: I'm writing my thesis and I divided the thesis into 3 parts, each part had 2 chapters.
At the beginning of each part, I added two pages of introduction. However, the numbering of ...
1
vote
1answer
71 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 ...
4
votes
2answers
114 views
How to change part and chapter pages on KOMA-Script?
In KOMA-Script classes, how can I change the appeareance (font size, color, arrangment, content, etc.) of the page created by \part an \chapter?
The pagestyle can be changed easily with KOMA-Script ...
3
votes
1answer
65 views
How to find out how many chapters are in a part?
Is there some counter that holds the number of \chapter that are in a \part? Or do I need to define and run my own counter?
3
votes
2answers
82 views
Redefine report Part with image
I am trying to include an image on the part title page of my report, so that it looks like this, but shows up correctly in the ToC:
\clearpage
\newpage
{\pagestyle{empty} ...
3
votes
2answers
87 views
Chapterstyle Memoir: Picture on page left, chapter opening on page right
I am working on the layout of my dissertation and I would like to have the following design for all my chapter-openings:
New chapters should always start on the left page, with a picturepage that ...
1
vote
3answers
157 views
How can the thesis structure be defined for PDF generation?
My thesis consists of these hierarchical elements:
\documentclass{report}
\begin{document}
\tableofcontents
\include{020-tex}
\end{document
where 020-tex.tex contains
\input{030-preface}
...
5
votes
2answers
74 views
write to back page of part
I have defined (using koma-script), that chapters only start on the right side. The same applies to part pages. So far this is ok.
But now I want to insert a contents list (using titletoc) on the ...
2
votes
1answer
60 views
Change part numbering to A, B, C, … instead of I, II, III, [duplicate]
How can I configure the \part command to use A, B, C, ... to label parts, instead of I, II, III, ... Or is this bad practice?
0
votes
1answer
58 views
part bookmarks and toc style
Within the book.cls class, I redefined the \part section to customize the respective toc entry as follows:
\def\@part[#1]#2{%
\ifnum \c@secnumdepth >-2\relax
\refstepcounter{part}%
...
1
vote
1answer
178 views
Separate book into parts and chapters
I am working with the book document class and want to create something like this. Moreover, in the Table of Contents I want the "Part" to be under- and over-lined and not to be numbered. I think of ...
1
vote
1answer
38 views
Change default text of numbered \part [duplicate]
I have a large document with lector notes. And each lector I'm separating by \part. I would like to change the default numbering text from "part" to "Lecture".
Example:
...
3
votes
1answer
84 views
Correct spacing between roman numbers in toc for parts
In my document, the roman numbers to the left of the part names are too close to the text.
I use this snippet the following codesnippet to correct the issue, but it gives me an undefined control ...
0
votes
1answer
44 views
change page which is created for `\part`
Is there a way to change the style of the heading etc. for \part?
I want to change the layout to leave out "Part 1." and instead just print out the part's name.
Actually I could change the question ...
7
votes
1answer
165 views
Redefining the \part environment to add a page border
How can I redefine the \part environment, in a book documentclass, to add a page border at the page margins?
By the way, it must be possible (since everything is possible in LaTeX) to get a shaded ...
2
votes
1answer
182 views
memoir class \part style
I am preparing a book in memoir class. I use \chapterstyle{madsen}, which uses a sans serif font (I don't know which one). I also have parts and I would like to have the parts to be typeset in the ...
6
votes
1answer
168 views
Control font size \part
I used a former question on TeX.SE to find the command \part*{}. I like everything about it but the font for it is huge. How can I tone down the size of the font for this command.
...
13
votes
2answers
277 views
Part navigator in beamer?
I have a 2 hour presentation, which contains 3 parts.
I'm using Warsaw theme, which have a top bar of two vertical lists: section list at the left, and the subsection list at the right.
Can I add a ...
5
votes
1answer
142 views
minitoc: parttoc on the same page as the part title
Easy example:
\documentclass{scrreprt}
\usepackage{minitoc}
\begin{document}
\doparttoc[n]
\noptcrule
\tableofcontents
\part{foo}
\parttoc
\chapter{bar1}
\chapter{bar2}
\chapter{bar3}
...
2
votes
1answer
171 views
Part in classicthesis doesn't display capital roman numerals
Very soft question, perhaps: I'm writing a document using classicthesis. I divided it in parts with the\part command. So it has "Part I", "Part II", etc. But the link to this parts, as displayed in ...
2
votes
1answer
94 views
How can I get the first and the last frame of an part in beamer class?
Beamer class differentiates between pages and frames. To get the first page of a part beamer provides the command \insertpartstartpage and for the last page \insertpartendpage.
Is there a chance to ...
7
votes
1answer
262 views
\part and \chapter commands output both numbered and named headings
I have the following LaTeX document being compiled in TeXstudio 2.3 on Windows 7 (mode is PdfLatex + PdfViewer):
\documentclass[a4paper,12pt]{report}
% Modified \part and \chapter from report.cls
...
0
votes
0answers
188 views
personalization of \part command in ClassicThesis [closed]
Why I get all these errors with that code?
\documentclass{scrreprt}
\usepackage[%
pdfspacing,%
dottedtoc,%
parts%
]{classicthesis}
\makeatletter
...
4
votes
1answer
70 views
Suppress page numbers for \part titles in memoir
I am using memoir and I would like the \part titles to print without page numbers. I have used
\aliaspagestyle{title}{empty}
to do this for the title page, is there a similar command for ...
6
votes
2answers
388 views
Align the roman numbers of the parts in ToC
How can I align the roman numbers of the parts in this manner? The alternative is to use an arabic enumeration. I would not any changes at the TOC of classicthesis outside of the alignment of the ...
4
votes
1answer
218 views
Remove part page
In my thesis all my chapters are grouped as a part (titled CHAPTERS). I want the part to appear in the TOC, but do not want a part page. The part is showing up fine in the toc, but the part page shows ...
3
votes
1answer
652 views
How do one reset the section numbers in beamer?
I want to reset the section numbers when a part in beamer starts.
So I tried:
\setcounter{section}{0}
That does not work.
So after searching I found this:
\makeatletter
...
4
votes
1answer
433 views
Changing of the numbering of parts in beamer
I want to change the part numbering in beamer.
I tried the following:
\renewcommand*{\thepart}{\arabic{part}}
\renewcommand{\thepart}{\arabic{part}}
but without any success. The Roman numbering ...
4
votes
1answer
437 views
Make \part in scrartcl
I am using the scrartcl of well-known KOMA-script (to those that know it well). As you know the article class has an environment called Abstract. Great, I like this and I use it. However, what I ...
5
votes
3answers
369 views
How to increase the numwidth for a part in ToC?
I am using a Koma-Script Book and I would like to begin the part numbers from 2012. However, 4 digit part number entries are causing a problem in the tableofcontents. There is a hbox overfull and the ...
3
votes
1answer
247 views
How to modify \part style in memoir
A beginner question: I would like to print \part with roman numbers
as it follows:
I. Teil
or
I. rész
Someone could please explain me how to do it?
5
votes
2answers
351 views
How to change the fontsize of the \part command
I am using the report style and I would just like to change the fontsize of the \part command. How do I do it ?
1
vote
2answers
261 views
newtheorem report class with `part' as reset counter
Sorry i have no MWE for this question.
I have a .dtx class and looking at the diff between a previous "good" version and the present i have, there is nowhere some recollection about what exactly is ...
0
votes
1answer
349 views
How to let \part stay solo page and no page number [duplicate]
Possible Duplicate:
Adding page number to the even page right after \part
My docment class is book. The default setting make \part stay on a single page but with page number. How to remove ...
5
votes
1answer
101 views
How to make part titles visible in ConTeXt?
ConTeXt has \part, \chapter, and \section titles, however, it seems that \part is disabled by default. If I used \part in my document, it is visible in the table of contents, but not in the document. ...
6
votes
3answers
859 views
Part style in memoir class
I use the \chapterstyle{thatcher} in memoir class.
I would like the part style would be similar to the chapter style - but with title centered in the page.
As I'm a newbie in LaTeX world, I wonder ...
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
780 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. ...
1
vote
1answer
550 views
Add dots in table of contents for parts for LaTeX document
My document has three "parts" (using the \part command), and chapters, and sections. When I generate my table of contents (\tableofcontents), all the chapters and lower have dots between the name of ...
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 ...
9
votes
2answers
1k views
How to remove page break after \part in report/book
I have tried to look through, but I couldn't find a clear solution on this.
I have a document that uses report with multiple \chapters in multiple \parts as:
\part{foo}
\chapter{uno}
\chapter{dos}
...
3
votes
1answer
474 views
A modification of \part style in memoir
I have modified the \part command style in a memoir document as in the following minimal example:
\documentclass[b5paper,10pt,twoside,openright,final,english]{memoir}
\usepackage{lipsum}
...
10
votes
1answer
439 views
Redefine memoir Part to allow image
I am preparing a book with memoir. The book has three parts. I would like to have the Part title raised and to insert an image directly below the title. I am able to raise the Part title to the upper ...
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 ...
9
votes
1answer
609 views
\part and tocloft
The following code was provided by Martin Scharrer in reply to a post in May 10.
\documentclass{book}
\usepackage[british]{babel}
\usepackage[titles]{tocloft}
\usepackage{tocloft}
...
3
votes
1answer
264 views
How to change formatting of \part in a .cls file?
I'm using an external .cls file, which is based on the report.cls template. I need to change the formatting of the top-level parts (i.e. \part objects) in the table of contents, and on the \part ...
3
votes
1answer
528 views
report/book: how to customize \part look (the page itself and listing in ToC)?
I was wondering how I can 'split' up a latex document into 'volumes'. The final TOC should read something like this:
Volume 1 2
1. chapter 1 of volume 1 ...
6
votes
2answers
417 views
Centering part entries in toc using memoir
I'm using memoir for a large document and want to center the toc entries corresponding to parts (page entries are turned off). I read the manual (specifically pp. 161-166) and while I have no problem ...
