Hi there,recently I have found latex! and i am loving it!
But i am with a problem.
when i use the \footnote some how the table of content add a page number where it happen.
is any way of remove the footnotes from table of contents?
Thank you in advanced!
General ⇒ Remove Footnote From TableOfContents
-
- Posts: 5
- Joined: Wed Jun 08, 2011 1:08 am
Remove Footnote From TableOfContents
Last edited by TiagoEsterisco on Wed Jun 08, 2011 6:40 pm, edited 1 time in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Remove Footnote From TableOfContents
Build a minimal example that is reduced to only the relevant code, reproduces the undesired behaviour clearly and is compilable as provided.
Best regards and welcome to the board
Thorsten
Best regards and welcome to the board
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 5
- Joined: Wed Jun 08, 2011 1:08 am
Remove Footnote From TableOfContents
I am sorry.
Here is a screen shot :
And the code.
Here is a screen shot :

And the code.
Code: Select all
\documentclass[10pt,a4paper]{article}
\usepackage[latin1]{inputenc}
\usepackage{wrapfig}
\usepackage{helvet}
\usepackage{ucs}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\begin{document}
\begin{titlepage}
\end{titlepage}
\setcounter{secnumdepth}{-1}
\setcounter{tocdepth}{3}
{ \vspace*{5cm} }
\tableofcontents
\newpage
{ \vspace*{5cm} }
\section{Objectivos Propostos}
\paragraph{\normalfont \indent O sistema de programação \textit{Lejos} permite desenvolver robots \textit{LEGO}\footnote{O sistema LEGO é um brinquedo cujo conceito se baseia em partes que se encaixam permitindo inúmeras combinações.} na linguagem de programação \textit{java}.}
\newpage
\end{document}
Re: Remove Footnote From TableOfContents
You seem to be misusing the \paragraph command. That is not for typesetting a regular paragraph, but for typesetting a heading one level below subsubsection which happens to be called a "paragraph heading". But if you must use a footnote in a \paragraph heading, try \protect\footnote{...} rather than just \footnote{...}.
-
- Posts: 5
- Joined: Wed Jun 08, 2011 1:08 am
Re: Remove Footnote From TableOfContents
Thank you very much!!!!