GeneralCustom Footnote

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
henry7849
Posts: 2
Joined: Thu Aug 25, 2011 9:29 pm

Custom Footnote

Post by henry7849 »

The following code produces a footnote so that the footnote mark can be
repeated. It seems there is a bug with this. The footnote mark is indeed
repeated, but there is too large a white-space between the end letter (right before the footnote mark)
and the footnote mark itself. Is there anyway we could get a fix for this?

thanks,
henry

---------------------------------------------------------------------------

\documentclass[10pt,dvips,twocolumn]{article}

\topmargin -0.70in
\textheight 9.0in
\textwidth 6.50in
\newcommand{\footnoteremember}[2]{
\footnote{#2}
\newcounter{#1}
\setcounter{#1}{\value{footnote}}
}
\newcommand{\footnoterecall}[1]{
\footnotemark[\value{#1}]
}
\begin{document}
The quick brown fox\footnoteremember{myfn}{ABBA} jumped over the lazy dog\footnoterecall{myfn}.
\end{document}

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

Post Reply