LaTeX 中的脚注

LaTeX 中的脚注

我尝试将两个脚注放在文档中的同一位置,这种方法可行,但脚注的编号与文本中的标记不对应。

我的代码是:

\begin{framed}
\noindent \textit{Sidenote:} The two results \footnotemark \footnotemark that Wiles needed to prove the theorem are given by the following equations: 
\begin{equation}
\rho_{f,p} \simeq \rho_{g,p}
\end{equation}
\begin{equation}
L(E,s) = \sum_{n=1}^{\infty} \frac{a_n}{n^s}
\end{equation} \newline \newline
\end{framed}

\footnotetext{Equation (1) is the equation corresponding to the $\varepsilon$ conjecture}
\footnotetext{Equation (2) is the equation corresponding to the modularity theorem}

结果是,“结果”一词处的标记显示为 1,2,这是正确的,但页面底部的标记都是 2。我做错了什么?

答案1

请始终提供可编译的代码,因为这比单纯的片段更有用。

未经测试,但我认为你想要

\addtocounter{footnote}{-1}%
\footnotetext{Equation (1) is the equation corresponding to the $\varepsilon$ conjecture}%
\stepcounter{footnote}%
\footnotetext{Equation (2) is the equation corresponding to the modularity theorem}%

但对于方程式编号,最好使用\label-系统。\ref

\documentclass{article}
\usepackage{framed}


\begin{document}
\begin{framed}
  \noindent \textit{Sidenote:} The two results \footnotemark\footnotemark{} that Wiles needed to prove the theorem are given by the following equations: 
  \begin{equation}
    \rho_{f,p} \simeq \rho_{g,p}\label{eq:rho}
  \end{equation}
  \begin{equation}
    L(E,s) = \sum_{n=1}^{\infty} \frac{a_n}{n^s}\label{eq:sum}
  \end{equation} \newline \newline
\end{framed}

\addtocounter{footnote}{-1}%
\footnotetext{Equation (\ref{eq:rho}) is the equation corresponding to the $\varepsilon$ conjecture}%
\stepcounter{footnote}%
\footnotetext{Equation (\ref{eq:sum}) is the equation corresponding to the modularity theorem}%  
\end{document}

脚注和交叉引用

相关内容