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
The mamoir user guide writes on page 235 about redefining the footnote märk which appears in the text:
NEW: TikZ book now 40% off at Amazon.com for a short time.

Re: Footnotemark in memoir
I have the splution. The code must be:
\makeatletter
\renewcommand*\@makefnmark{{\footnotesize (\@thefnmark)}}
\makeatother
Thanks to user »raid« on goLaTeX-Forum.
\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
Footnotemark in memoir
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.