- Is there a way to miss the chapter number at index?
- How can i get a new command like "\partuntitled" in order to show parts
without the name 'Part N'? (not at index)
Page Layout ⇒ Omit Chapter Number in ToC and Parts without Prefix Title
Omit Chapter Number in ToC and Parts without Prefix Title
In short:
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 many kinds of documents
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Omit Chapter Number in ToC and Parts without Prefix Title
In short.
Thorsten
- Use the
\chapter*
command and add this chapter subsequently with\addcontentsline
to the ToC. - Use the
\part*
command.
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Omit Chapter Number in ToC and Parts without Prefix Title
Thank you! So i insert
Steve,
\addcontentsline{toc}{part}{name}
, after \part*{name}
. Perfect (in my case) for a case with more than two prologues and epilogues (and his parts).Steve,