如何更改正文中脚注标记使用的字体,尤其是在 KOMA 类中?
KOMA-Script 允许我更改脚注中的脚注字体标签,例如
\addtokomafont{footnotelabel}{\sffamily}
但我不知道如何更改文本中的标签。
我询问的原因是我的一些字体没有完整的字符\textsuperscript
,所以文本中只有一些脚注标签能够正常显示。
答案1
您可以使用元素设置文本中脚注引用的字体footnotereference
。
可以更改字体的元素\setkomafont
,具体\addkomafont
描述如下
- 表 3.2德语 KOMA-Script 手册,第 57 页及以下页面,以及
- 表 3.2英文版 KOMA-Scrip 手册,第 51 页及后续页面。
代码
\documentclass{scrartcl}
\setkomafont{footnotereference}{\ttfamily}
\begin{document}
Hello World!\footnote{Hello World!}
\end{document}