- 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
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Omit Chapter Number in ToC and Parts without Prefix Title
- Use the
\chapter*
command and add this chapter subsequently with\addcontentsline
to the ToC. - Use the
\part*
command.
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Omit Chapter Number in ToC and Parts without Prefix Title
\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,