选择脚注符号(双星号)

选择脚注符号(双星号)

这是我当前的 Tex 文件:

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[symbol]{footmisc}
\renewcommand{\thefootnote}{\fnsymbol{footnote}}

\begin{document}

\noindent Some text\protect\footnote[1]{Footnote 1}\\
\noindent Some other text\protect\footnote[1]{Footnote 2}

\end{document}

结果如下: 在此处输入图片描述

我希望脚注分别为 * 和 **。

答案1

在标准设置中,双星号位于第 7 位,因此您可以将第二个脚注输入为\footnote[7]{...}。最好使用wiley提供的编号footmisc

在此处输入图片描述

使得

\documentclass{article}

\usepackage[symbol*]{footmisc}
\setfnsymbol{wiley}

\begin{document}

Some text\footnote{Footnote 1}

Some other text\footnote{Footnote 2}

\end{document}

生产

在此处输入图片描述

在此处输入图片描述

相关内容