使用 ednote/manyfoot:有没有办法切换段落脚注?

使用 ednote/manyfoot:有没有办法切换段落脚注?

有没有办法使用 ednotes/manyfoot 在段落脚注和常规脚注之间切换给定的脚注类?(我知道使用其他脚注包也可以做到这一点,但由于各种原因,我不得不使用 ednotes。)

我想要的是一个脚注类,即 footnoteC,它通常会以段落格式显示短脚注,但有时我可以将其切换为非段落样式,以显示偶尔较长的注释。我不想对这些较长的注释使用不同的脚注类,比如 footnoteB,因为我不想让它们有不同的计数器并显示在页脚的不同行中。

MWE 的价值如下:

\documentclass{article}

\usepackage[para]{ednotes}

\newfootnote[para]{C}
\newcounter{footnoteC} \newcommand{\footnoteC}{%
\stepcounter{footnoteC}%
\Footnotemark\thefootnoteC \FootnotetextC\thefootnoteC}

\begin{document}

Some text\footnoteC{A note.} that has paragraph footnotes.\footnoteC{Another note.}  
But occasionally I want to have a long note that starts its own line.\footnoteC{A 
long note that is supposed to be on its own line below the first two.}

\end{document} 

答案1

我遇到了同样的问题。我正在manyfoot使用帕拉样式,但需要将其中一条注释放在单独的行中。到目前为止,我\newline在前一条注释的末尾和我想分离的注释的末尾使用该命令。这可能会导致某些页面的页脚页码重叠,但可能对您有用。

相关内容