脚注添加为\footnote{footnote_here}
。它会生成一个数字作为脚注的超链接,至少作为默认设置。问题是,当引用参考书目时,这些符号会互相干扰;我的意思是,引用和脚注都有一个数字作为符号。
问题
有没有推荐的脚注符号,不同于阿拉伯数字?我该如何修改?
答案1
您可以使用字母作为脚注:
\documentclass[]{article}
\usepackage{blindtext}% for dummy text
\renewcommand*{\thefootnote}{\alph{footnote}}
\begin{document}
\blindtext\footnote{foo}
\blindtext\footnote{bar}
\end{document}