General ⇒ Suppressing footnote numbers
Suppressing footnote numbers
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
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
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Suppressing footnote numbers
here's a quick woraround:
Code: Select all
surrounding text{\renewcommand*\@makefnmark{}
\footnotetext{Text}
\makeatother} more text
Re: Suppressing footnote numbers
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Suppressing footnote numbers
Stefan
Suppressing footnote numbers
Code: Select all
\documentclass[a4paper,12pt]{amsbook}
\usepackage{color}
\usepackage{a4}
\usepackage{graphicx}
\usepackage{appendix}

- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Suppressing footnote numbers
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}
Re: Suppressing footnote numbers
Tim
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Suppressing footnote numbers
Stefan