很好的脚注

很好的脚注

关于问题为学生准备的精彩练习集我问过,目前我不知道如何将右上角的相同阴影线反转为灰色(我希望可以改变颜色:例如橙色或其他颜色),可以替换命令的经典水平黑线\footnote

请参阅以下附件中的图片:

在此处输入图片描述

这是我的输出和我的MWE

在此处输入图片描述

\documentclass[12pt]{article}
\usepackage[bottom,hang]{footmisc}
\setlength\footnotemargin{4.5pt}
\setlength{\footnotesep}{4.5pt}
\setlength{\skip\footins}{8mm}
\begin{document}
First word\footnote{One}, Second word\footnote{Two}
\end{document}

答案1

只需\renewcommand\footnoterule使用链接帖子中的规则的(简化)定义。您必须在加载包之前执行此操作,footmisc因为它会覆盖\footnoterule

\documentclass[12pt]{article}
\usepackage{tikz}
\usetikzlibrary{fadings}

\renewcommand\footnoterule{%
  \noindent
  \kern-3pt
  \begin{tikzpicture}[baseline=-10pt]
    \fill[darkgray,path fading=east] (0,0) rectangle (.4\columnwidth,0.02);
  \end{tikzpicture}%
  \kern2.6pt
}

\usepackage[bottom,hang]{footmisc}
\setlength\footnotemargin{4.5pt}
\setlength{\footnotesep}{4.5pt}
\setlength{\skip\footins}{8mm}
\begin{document}
First word\footnote{One}, Second word\footnote{Two}
\end{document}

在此处输入图片描述

答案2

[编辑:这个答案不会改变脚注规则,但只会改变脚注文本和符号颜色]

在你的序言中添加三行可能会给你想要的结果:

\documentclass[12pt]{article}
\usepackage[bottom,hang]{footmisc}
\setlength\footnotemargin{4.5pt}
\setlength{\footnotesep}{4.5pt}
\setlength{\skip\footins}{8mm}
%
\usepackage{xcolor}
\renewcommand{\thefootnote}{\color{orange}\arabic{footnote}} % change the color of the footnote counter
\renewcommand{\footnotelayout}{\color{orange}} % change the color of the footnote text
%
\begin{document}
First word\footnote{One}, Second word\footnote{Two}.
\end{document}

输出结果为:

在此处输入图片描述

相关内容