题词中脚注的编号问题

题词中脚注的编号问题

我对题词中几个脚注的编号有些困难。使用\footnotemark\footnotetext,虽然内容正确,但两个脚注的编号相同。使用\footnotemark[1]也无济于事。我正在使用epigraph包。

梅威瑟:

\documentclass[a4paper,11pt]{article}
\usepackage[T1]{fontenc}
\usepackage{epigraph}
\usepackage[sc]{mathpazo}
\setlength{\epigraphrule}{0pt}
\setlength{\epigraphwidth}{.9\textwidth}
\renewcommand{\epigraphflush}{center}
\renewcommand{\sourceflush}{flushright}
\renewcommand{\textflush}{flushleft}
\setlength{\afterepigraphskip}{.2\baselineskip}

\begin{document}
\section{Introduction}
\begin{epigraphs}
\qitem{Epigraph one blah blah blah?\footnotemark Blah blah\footnotemark blah}%  
{---\textsc{Author A}}
\qitem{Epigraph two blah blah}%
{---\textsc{Author B}}
\end{epigraphs}
\footnotetext{one}
\footnotetext{two}
\noindent Blah blah blah\footnote{three}. Blah blah Blah.
\end{document}

答案1

这不是环境问题,而是/解决方法epigraphs的一般限制。如果您将此组合用于多个脚注,则必须通过在第一个脚注之前减去(即脚注数)并在所有其他出现的 之前使用 来调整脚注计数器。修改您的示例如下:\footnotemark\footnotetextn-1n\footnotetext\stepcounter\footnotetext

\addtocounter{footnote}{-1}
\footnotetext{one}
\stepcounter{footnote}
\footnotetext{two}

(注意:我已经给出了这个提示这里之前,但我不认为你的问题是重复的。)

相关内容