Generalfootnote on subsubsection

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
abu aasiyah
Posts: 26
Joined: Wed Sep 30, 2009 7:04 pm

footnote on subsubsection

Post by abu aasiyah »

Hello,

Does anyone know how to put a footnote in a subsubsection??

Thanks.

Recommended reading 2024:

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

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

User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

footnote on subsubsection

Post by gmedina »

Hi,

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}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Post Reply