bigfoot 和 footmisc 与“multiple”选项配合使用效果不佳

bigfoot 和 footmisc 与“multiple”选项配合使用效果不佳

我希望示例中的脚注在文中引用时以逗号分隔。footmisc 的“多个”选项应该可以做到这一点,但它不起作用。我该如何让它工作?我加载软件包的方式是否错误?

谢谢詹姆斯

梅威瑟:

\documentclass{article}
\usepackage[multiple]{footmisc}
\usepackage{bigfoot}

\DeclareNewFootnote[para]{R}[Roman]
\DeclareNewFootnote[para]{N}

\begin{document}
First sentence.\footnoteR{Here is a footnote.}\footnoteR{Here is another footnote.}\footnoteN{And another one.}\footnoteN{And moe.} And another one.
\end{document}

答案1

fnpct软件包确实正确处理了这个问题:

\documentclass{article}
\usepackage[
  paperwidth=.5\textwidth,
  paperheight=12\baselineskip,
  margin=5pt,
  bottom=1.5cm]{geometry}
\usepackage[dont-mess-around]{fnpct}[2012/07/07] % v0.2d
% the `dont-mess-around' option disables additional kerning
% and punctuation switching.
\usepackage{bigfoot}

\DeclareNewFootnote[para]{R}[Roman]
\DeclareNewFootnote[para]{N}

\begin{document}
First sentence.\footnoteR{Here is a footnote.}\footnoteR{Here is another footnote.}%
\footnoteN{And another one.}\footnoteN{And moe.} And another one.
\end{document}

在此处输入图片描述

相关内容