重置脚注的设置吗?

重置脚注的设置吗?

我目前正在使用 Applied Probability Trust 模板撰写论文。在.cls模板文件中,似乎设置footnote被修改,使得作者的邮政地址信息出现在标题页的脚注中。但是,它也以某种方式取消了论文正文中脚注的自动编号。

我现在遇到的问题是似乎禁止一页有两个脚注(否则,编译不通过)。如果一页只有一个脚注,footnotetext页面底部会出现 ,但没有footnotemark

我的问题是如何正确更改设置以便恢复脚注的默认设置,即自动编号等?似乎修改文件中脚注行为的条款.cls如下。

\renewcommand\thefootnote{}
\renewcommand\footnoterule{\flushleft\raisebox{2pt}{\rule{42.68pt}{0.4pt}}}
\skip\footins=17.07pt

该文件的链接.cls这里模板文件是这里

提前致谢!

答案1

只需添加行

\renewcommand\thefootnote{\arabic{footnote}}

到你的序言或者任何你想要开始的地方。

梅威瑟:

\documentclass{aptpub}

\renewcommand\thefootnote{\arabic{footnote}}

\begin{document}

\vspace*{\fill} % just to see the output

Text\footnote{A first footnote}

Text\footnote{A second footnote}
\end{document} 

输出:

在此处输入图片描述


编辑

查看你的模板你可能还需要

\setcounter{footnote}{0}

在那之前。

相关内容