Text FormattingStarred sections

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
marcdein
Posts: 40
Joined: Sat Dec 19, 2009 2:11 pm

Starred sections

Post by marcdein »

I want some of the sections in my document to have an asterisk next to the title, to indicate that they can be omitted on a first reading. Obviously, one way of doing this is to have ($\ast$) right after the title. However, the asterisks then appear in the table of contents as well. Is there a more standard way of doing this, perhaps?
Last edited by marcdein on Mon Feb 20, 2012 10:31 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

Stefan Kottwitz
Site Admin
Posts: 10345
Joined: Mon Mar 10, 2008 9:44 pm

Starred sections

Post by Stefan Kottwitz »

The problem with the table of contents (and page header marks) can be solved by using the optional argument of \section:

Code: Select all

\section[A hard topic]{A hard topic$\ast$}
I would define a macro for this, such as \skipsection.

A more standard way, however, may be using a footnote in the header (not in the ToC).

Stefan
LaTeX.org admin
marcdein
Posts: 40
Joined: Sat Dec 19, 2009 2:11 pm

Re: Starred sections

Post by marcdein »

Thanks!
Post Reply