General ⇒ Suppressing footnote numbers
Suppressing footnote numbers
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
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
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
Hi Tim,
here's a quick woraround:
Stefan
here's a quick woraround:
Code: Select all
surrounding text{\renewcommand*\@makefnmark{}
\footnotetext{Text}
\makeatother} more text
LaTeX.org admin
Re: Suppressing footnote numbers
Thanks for the response, tho that approach doesn't seem to work...
- Stefan Kottwitz
- Site Admin
- Posts: 10347
- Joined: Mon Mar 10, 2008 9:44 pm
Suppressing footnote numbers
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
Stefan
LaTeX.org admin
Suppressing footnote numbers
this is most of my preamble
Thanks for your help 
Code: Select all
\documentclass[a4paper,12pt]{amsbook}
\usepackage{color}
\usepackage{a4}
\usepackage{graphicx}
\usepackage{appendix}

- Stefan Kottwitz
- Site Admin
- Posts: 10347
- Joined: Mon Mar 10, 2008 9:44 pm
Suppressing footnote numbers
Try this compilable example:
Stefan
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}
LaTeX.org admin
Re: Suppressing footnote numbers
Works beautifully, thanks for the help!
Tim
Tim
- Stefan Kottwitz
- Site Admin
- Posts: 10347
- Joined: Mon Mar 10, 2008 9:44 pm
Suppressing footnote numbers
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
Stefan
LaTeX.org admin