如果我想让两个脚注彼此相邻,用逗号分隔,那么这样做的语法是什么? Pandoc documentation似乎没有指定方式。
作为我想要完成的事情的一个例子:
Some text here [^fn1, ^fn2] ## this clearly isn't the syntax, I've tried this.
变为:
这里的一些文字 1,2 。
答案 0 :(得分:3)
多个脚注的语法是:
Some text here [^fn1][^fn2]
[^fn1]: foo
[^fn2]: bar
但是,要在PDF输出中用逗号分隔它们,您必须在tell LaTeX to do so中包含以下内容pandoc template:
\usepackage[multiple]{footmisc}
对于HTML输出,你必须在CSS中使用类似的东西:
<style>
.footnoteRef ~ .footnoteRef :before {
content: ', '
}
</style>