General ⇒ Chapter Headings
-
- Posts: 16
- Joined: Fri Jul 25, 2008 5:54 pm
Chapter Headings
I'm writing up some notes and am compiling my document in report format. I would like to suppress the chapter headings,
i.e. Chapter 1, Chapter 2, Chapter 3 etc...
leaving just the chapter title,
i.e. Lecture 1, Lecture 2, Lecture 3 etc...
I can do this using
\chapter*{Lecture1}
But then I dont get a table of contents? Can any of you wonderful latexers help me?
Thanks in advance,
Paul
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 more
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
Chapter Headings
Code: Select all
\chapter*{Lecture 1}
\addcontentsline{toc}{chapter}{Lecture 1}
Best regards
Thorsten¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 16
- Joined: Fri Jul 25, 2008 5:54 pm
Re: Chapter Headings
Cheers
Paul