脚注编号

脚注编号

无论我做什么,脚注都以数字 5 开头。我该如何改变这种情况?

\documentclass{article}
\usepackage{tabulary}
\begin{document}
\setcounter{footnote}{1}

\begin{tabulary}{\textwidth}{LLLL} \hline
\textbf{x} & x & \textbf{x} & \textbf{x}\\ \hline 
x & x & x\footnote{y} & x\\
x\footnote{y} & x & x\footnote{y} & x\\\hline
\end{tabulary} 

\end{document}

答案1

您发现的问题似乎仅限于环境tabulary。出于某种原因,在启动环境时,3会将 添加到计数器中。(这肯定是无意的。软件包的版本是。)footnotetabularytabulary2014/06/11 v0.10

tabulary在软件包的更新版本分发之前,您可以应用以下快速修复方法:将以下代码添加到序言中。

\usepackage{etoolbox}
\AtBeginEnvironment{tabulary}{\addtocounter{footnote}{-3}}

相关内容