Document ClassesFootnotemark in memoir

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
Auerhahn
Posts: 2
Joined: Sun Mar 09, 2014 11:14 am

Footnotemark in memoir

Post by Auerhahn »

The mamoir user guide writes on page 235 about redefining the footnote märk which appears in the text:
The \footnote macro calls the kernel command \@makefnmark to typeset the foot- note marker at the point where \footnote is called (the value of the marker is kept in the macro \@thefnmark which is defined by the \footnote or \footnotemark macros). The default definition typesets the mark as a superscript and is effectively

\newcommand*{\@makefnmark}[1]{\hbox{\textsuperscript{#1}}}

You can change this if, for example, you wanted the marks to be in parentheses at the baseline.
\renewcommand*{\@makefnmark}[1]{{\footnotesize (#1)}}

or, somewhat better to take account of the size of the surrounding text
\renewcommand*{\@makefnmark}[1]{\slashfracstyle{(#1)}}
This doesn't work. If I use one if these commands I get an empty paranthesis. It seems, there is no Parameter #1. Or what is wrong? And how can I redefine the footnote mark?

Recommended reading 2024:

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

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

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Auerhahn
Posts: 2
Joined: Sun Mar 09, 2014 11:14 am

Re: Footnotemark in memoir

Post by Auerhahn »

I have the splution. The code must be:

\makeatletter
\renewcommand*\@makefnmark{{\footnotesize (\@thefnmark)}}
\makeatother

Thanks to user »raid« on goLaTeX-Forum.
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Footnotemark in memoir

Post by Johannes_B »

Crossposts without proper links are discouraged, not only here but almost in every forum. Please read what our administrator thinks about that: Gimme Pizza!.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Post Reply