How can I make bold the symbols and their brackets that I choose for footnotes?. For example, I don't want this [¶] as the 9th footnote (\mathparagraph), but this [¶].
I change Heiko Oberdiek's answer in that question. The code is below:
\documentclass{article}
\usepackage{wasysym}
\makeatletter
\newcommand*{\myfnsymbolsingle}[1]{%
\ensuremath{%
\ifcase#1% 0
\or % 1
*%
\or % 2
\dagger
\or % 3
\twonotes
\or % 4
\mathsection
\or % 5
\natural
\or
\sharp
\or
\ddagger
\or
\eighthnote
\or
\mathparagraph
\or % 1
**%
\or % 2
\dagger\dagger
\or % 3
\twonotes\twonotes
\or % 4
\mathsection\mathsection
\or % 5
\natural\natural
\or
\sharp\sharp
\or
\ddagger\ddagger
\or
\eighthnote\eighthnote
\or
\mathparagraph\mathparagraph
\else % >= 6
\@ctrerr
\fi
}%
}
\makeatother
\newcommand*{\myfnsymbol}[1]{%
\myfnsymbolsingle{\value{#1}}%
}
% remove upper boundary by multiplying the symbols if needed
\usepackage{alphalph}
\newalphalph{\myfnsymbolmult}[mult]{\myfnsymbolsingle}{}
\renewcommand*{\thefootnote}{%
[\myfnsymbolsingle{\value{footnote}}]%
}
\begin{document}
trrt\footnote{a}
fghfgh\footnote{b}\footnote{c}\footnote{d}\footnote{e}%
\footnote{f}\footnote{g}\footnote{h}\footnote{i}\footnote{j}%
fghfgh\footnote{b}\footnote{c}\footnote{d}\footnote{e}%
\footnote{f}\footnote{g}\footnote{h}\footnote{i}%
\end{document}
How can I do it?
Thanks in advanced!!!
P.S.: And one not so important question: I believe that the code witch I made has pieces that are not necessary. Am I right?
fakeboldcode? Do you know how can I use it?\def\fakebold#1{\ThisStyle{\ooalign{$\SavedStyle#1$\cr% \kern-\bshft$\SavedStyle#1$\cr% \kern\bshft$\SavedStyle#1$}}}– Kώστας Κούδας Jul 02 '19 at 10:16