General ⇒ footnote on subsubsection
-
- Posts: 26
- Joined: Wed Sep 30, 2009 7:04 pm
footnote on subsubsection
Does anyone know how to put a footnote in a subsubsection??
Thanks.
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
footnote on subsubsection
protect the \footnote command (you will also probably have to use the optional argument of the \subsubsection command to prevent the footnote from appearing in the ToC). Take a look at the following example:
Code: Select all
\documentclass{article}
\begin{document}
\tableofcontents
\section{Test section}
\subsection{Test subsection}
\subsubsection[Test subsubsection]{Test subsubsection\protect\footnote{The footnote text.}}
\end{document}