GeneralRemove Footnote From TableOfContents

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
TiagoEsterisco
Posts: 5
Joined: Wed Jun 08, 2011 1:08 am

Remove Footnote From TableOfContents

Post by TiagoEsterisco »

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!
Last edited by TiagoEsterisco on Wed Jun 08, 2011 6:40 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.

User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Remove Footnote From TableOfContents

Post by localghost »

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
TiagoEsterisco
Posts: 5
Joined: Wed Jun 08, 2011 1:08 am

Remove Footnote From TableOfContents

Post by TiagoEsterisco »

I am sorry.

Here is a screen shot :Image

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}
User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Re: Remove Footnote From TableOfContents

Post by frabjous »

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{...}.
TiagoEsterisco
Posts: 5
Joined: Wed Jun 08, 2011 1:08 am

Re: Remove Footnote From TableOfContents

Post by TiagoEsterisco »

Thank you very much!!!!
Post Reply