GeneralSuppressing footnote numbers

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
tdc
Posts: 34
Joined: Fri Sep 12, 2008 1:52 am

Suppressing footnote numbers

Post by tdc »

Hi,

I was wondering if anyone could help me,

I'm trying to add a footnote that doesn't include a number... currently i'm using \footnotetext but that just gives me a footnote with a number 0, is there anyway to suppress this number?

Cheers, Tim

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: 10347
Joined: Mon Mar 10, 2008 9:44 pm

Suppressing footnote numbers

Post by Stefan Kottwitz »

Hi Tim,

here's a quick woraround:

Code: Select all

 surrounding text{\renewcommand*\@makefnmark{}
\footnotetext{Text}
\makeatother} more text
Stefan
LaTeX.org admin
tdc
Posts: 34
Joined: Fri Sep 12, 2008 1:52 am

Re: Suppressing footnote numbers

Post by tdc »

Thanks for the response, tho that approach doesn't seem to work...
User avatar
Stefan Kottwitz
Site Admin
Posts: 10347
Joined: Mon Mar 10, 2008 9:44 pm

Suppressing footnote numbers

Post by Stefan Kottwitz »

It works for me with the report class. Depending on your document class, the packaged loaded by you and your settings it may have a different effect, if you want to solve this just tell us your document preamble or provide a minimal working example.

Stefan
LaTeX.org admin
tdc
Posts: 34
Joined: Fri Sep 12, 2008 1:52 am

Suppressing footnote numbers

Post by tdc »

this is most of my preamble

Code: Select all

\documentclass[a4paper,12pt]{amsbook}

\usepackage{color}
\usepackage{a4}
\usepackage{graphicx}
\usepackage{appendix} 
Thanks for your help :)
User avatar
Stefan Kottwitz
Site Admin
Posts: 10347
Joined: Mon Mar 10, 2008 9:44 pm

Suppressing footnote numbers

Post by Stefan Kottwitz »

Try this compilable example:

Code: Select all

\documentclass[a4paper,12pt]{amsbook}
\usepackage{color}
\usepackage{a4}
\usepackage{graphicx}
\usepackage{appendix} 
\begin{document}
Text\makeatletter{\renewcommand*{\@makefnmark}{}
\footnotetext{footnote without mark}\makeatother}
more text\footnote{another footnote}
\end{document}
Stefan
LaTeX.org admin
tdc
Posts: 34
Joined: Fri Sep 12, 2008 1:52 am

Re: Suppressing footnote numbers

Post by tdc »

Works beautifully, thanks for the help!
Tim
User avatar
Stefan Kottwitz
Site Admin
Posts: 10347
Joined: Mon Mar 10, 2008 9:44 pm

Suppressing footnote numbers

Post by Stefan Kottwitz »

Btw. the a4 package is obsolete, the option a4paper for amsbook is enough. If you're using it just because of the narrower margins you could have a look at the geometry package that allows adjustments in a comfortable way.

Stefan
LaTeX.org admin
Post Reply