脚注通常如何编号?在文档中,我只插入了一个脚注,其编号为 5。
这是正常的吗?根据印刷(或其他)规则,是否有关于脚注编号的惯例?如果没有,我该如何修复它?
本文件基于这模板。
\documentclass{llncs}
\usepackage{lipsum}
\begin{document}
\title{Title}
\author{Author 1\inst{1}, Author 2\inst{2}, Author 3\inst{3}, Author 4\inst{4}, \and Author 5\inst{1} }
\institute{Institute 1
\and
Institute 2
\and
Institute 3
\and
Institute 4}
\maketitle
\begin{abstract}
\lipsum[1]
\end{abstract}
\keywords{Keyword 1, Keyword 2}
\section{Title}
Text\footnote{Explanation} here.
\end{document}
答案1
在命令的末尾\maketitle
,footnote
计数器被设置为的值\fnnstart
,而该值又被设置为\institutename
。
但当时的价值观是错误的\maketitle
。
\fnnstart
这是一个用替换 的小补丁0
。
\documentclass{llncs}
\usepackage{lipsum}
\usepackage{xpatchcmd}
\xpatchcmd{\maketitle}{%
\setcounter{footnote}{\fnnstart}%
}{%
\setcounter{footnote}{0}%
}{}{}
\begin{document}
\title{Title}
\author{Author 1\inst{1}, Author 2\inst{2}, Author 3\inst{3}, Author 4\inst{4}, \and Author 5\inst{1} }
\institute{Institute 1
\and
Institute 2
\and
Institute 3
\and
Institute 4}
\maketitle
\begin{abstract}
\lipsum[1]
\end{abstract}
\keywords{Keyword 1, Keyword 2}
\section{Title}
Text\footnote{Explanation} here.
\end{document}