如何在 RMarkdown 中引用多篇论文
How to cite multiple papers in RMarkdown
我如何在 RMarkdown 中引用多篇论文,就像在 LaTex 中一样
\cite{Bartel2004, Bartel2009a}
我试过了
[@Bartel2004, @Bartel2009a]
呈现给
(D. P. Bartel 2004, David P. Bartel (2009))
这还不错,但第二个括号不应该在那里。
编辑:
- github gist 处的最小工作示例。
pandoc 版本
pandoc 1.19.2.1
Compiled with pandoc-types 1.17.0.4, texmath 0.9, skylighting 0.1.1.4
根据这个Github issue:
Multiple citations in the same bracket should be separated by a semicolon ;
instead of a comma.
因此您需要使用 [@Bartel2004; @Bartel2009a]
而不是 [@Bartel2004, @Bartel2009a]
。
我如何在 RMarkdown 中引用多篇论文,就像在 LaTex 中一样
\cite{Bartel2004, Bartel2009a}
我试过了
[@Bartel2004, @Bartel2009a]
呈现给
(D. P. Bartel 2004, David P. Bartel (2009))
这还不错,但第二个括号不应该在那里。
编辑:
- github gist 处的最小工作示例。
pandoc 版本
pandoc 1.19.2.1 Compiled with pandoc-types 1.17.0.4, texmath 0.9, skylighting 0.1.1.4
根据这个Github issue:
Multiple citations in the same bracket should be separated by a semicolon
;
instead of a comma.
因此您需要使用 [@Bartel2004; @Bartel2009a]
而不是 [@Bartel2004, @Bartel2009a]
。