连续脚注编号不起作用

连续脚注编号不起作用

我读了这个答案,我仍然有脚注,每翻一页都会重置连续脚注编号

我的序言如下:

 %% Footnotes 
\usepackage{chngcntr}
\counterwithout{footnote}{page}
\deffootnote{1.5em}{1em}{\makebox[1.5em][l]{\thefootnotemark}}
\addtolength{\skip\footins}{\baselineskip} 
\setlength{\dimen\footins}{10\baselineskip}
\interfootnotelinepenalty=10000 

也许这也有帮助:

\usepackage[
 automark,         
 nouppercase,
]{scrpage2}
\renewcommand*{\chaptermarkformat}{}
\IfElseChapterDefined{
\pagestyle{scrheadings}
}{
\pagestyle{scrplain}
}
\clearscrheadings
\clearscrplain
\IfElseChapterDefined{
\automark[chapter]{chapter}
}{
\automark[subsection]{section}
}
\IfElseChapterDefined{
\ihead{\headmark}
\ohead{\pagemark}
}{
}
\IfChapterDefined{
\setheadsepline{0.6pt}[\color{rgb:black,100}]
%\setfootsepline{0.6pt}[\color{rgb:black,100}]
}

请帮忙。我是 Latex 新手。

答案1

我找到了一种不同的方法来实现这一点,我想与大家分享:

\documentclass{article}
\usepackage{etoolbox}
% Make custom counter for the footnotes
% Patch the footnote command to bend to our needs
\patchcmd{\footnote}{\@mpfn}{{myfootnote}}\relax\relax
\patchcmd{\footnote}{\thempfn}{{\themyfootnote}}\relax\relax
% Test it out
\begin{document}
  Footnote one here\footnote{Footnote 1}
  \clearpage
  Footnote two here\footnote{Footnote 2}
\end{document}

但请注意:

这可能是其他错误,因为这是有效的:

\documentclass{article}
\counterwithout{footnote}{page}
% Test it out
\begin{document}
  Footnote one here\footnote{Footnote 1}
  \clearpage
  Footnote two here\footnote{Footnote 2}
\end{document}

相关内容