仅更改页面底部的脚注标记的颜色

仅更改页面底部的脚注标记的颜色

是否可以仅在页面底部更改脚注标记的颜色?!

我在序言中有这段代码

\documentclass[12pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[x11names, svgnames, dvipsnames]{xcolor}
\usepackage{hyperref}
\hypersetup{
 colorlinks=true,
 linkcolor=DeepPink2,
 filecolor=magenta,
 urlcolor=Magenta3,
 citecolor=OrangeRed2
}

当我写类似这样的内容时:

This is footnote \footnote{blablabla}

Latex 将页面底部的标记颜色保持为黑色,并将页面实际正文中的脚注编号的颜色更改为\hypersetup命令声明的颜色。

我只需要将页面底部的脚注标记的颜色更改为蓝色(比如说),但我想保留页面正文中脚注编号的颜色。

提前致谢。

相关内容