如何使 \footnotemark 颜色改变?

如何使 \footnotemark 颜色改变?

平均能量损失

\documentclass[a5paper,11pt]{report}
\usepackage{color}
\usepackage[colorlinks=true,linkcolor=blue]{hyperref}
\hypersetup{%
    colorlinks=true, 
    citecolor=blue,
    linkcolor=blue,
    urlcolor=black,
    filecolor=magenta
    }

\begin{document}

$\alpha$\footnote{$\alpha$: alpha} % Blue

\fcolorbox{black}{black}{\color{white}{$\mu$\footnotemark}} % White
\footnotetext{$\mu$: micro}

$\beta$\footnote{$\beta$: beta} % Blue

\end{document}

输出

在此处输入图片描述

但我想让蓝色数字 1 为白色。而且它只能出现在这条线上。其他蓝色仍为蓝色。

在此处输入图片描述

答案1

如果您仍然想要超链接,您可以更改组内的颜色:

{\hypersetup{linkcolor=white}\footnotemark}

如果您不想要链接,那么您可以使用NoHyper环境:

\begin{NoHyper}\footnotemark\end{NoHyper}

相关内容