重新定义\ footnote以更改Latex中索引的颜色

时间:2019-05-19 16:45:09

标签: latex xelatex

对于我的工作,我将可以选择更改脚注索引的颜色。

我找到了一种更改颜色的方法,但是它不灵活。

\RequirePackage{xcolor}
\definecolor{red}{RGB}{165,30,55}
\renewcommand{\thefootnote}{\textcolor{red}{\arabic{footnote}}}

\begin{document}
a footnote\footnote{lalala}
\end{document}

这有效。但这不是:

\renewcommand{\thefootnote}[1]{\textcolor{#1}{\arabic{footnote}}}
\begin{document}
a footnote\footnote[red]{lalala}
\end{document}

我认为是因为\footnote已经有一个可选的索引号参数。 有办法改变吗?

1 个答案:

答案 0 :(得分:1)

使用新命令,可以执行以下操作:

\documentclass{article}

\RequirePackage{xcolor}

\newcommand{\cfootnote}[2][black]{%
    {\color{#1}\footnote{#2}}%
}

\begin{document}
a footnote\cfootnote{lalala}


a footnote\cfootnote[red]{lalala}
\end{document}

enter image description here

另一种重新定义脚注的方法:

\documentclass{scrartcl}
\usepackage{scrletter}
\usepackage{xcolor}

\let\oldfootnote\footnote
\usepackage{xparse}
\usepackage{etoolbox}
\RenewDocumentCommand{\footnote}{ O{} m O{black}}{%
    \deffootnotemark{\color{#3}\textsuperscript{\thefootnotemark}}%
    \ifstrempty{#1}{%
        \oldfootnote{#2}%
    }{%
        \oldfootnote[#1]{#2}%
    }
}

\begin{document}

test\footnote{text}[red]

test\footnote{text}

test\footnote[42]{text}

test\footnote[42]{text}[blue]

\end{document}

enter image description here