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?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)}}
Document Classes ⇒ Footnotemark in memoir
Footnotemark in memoir
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
Re: Footnotemark in memoir
\makeatletter
\renewcommand*\@makefnmark{{\footnotesize (\@thefnmark)}}
\makeatother
Thanks to user »raid« on goLaTeX-Forum.
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm