【发布时间】:2013-01-13 01:58:35
【问题描述】:
我想在我的 markdown 中使用乳胶风格的引用 \cite{key},这样我就可以使用 pandoc 很好地创建 tex 和 pdf 文档。但是,当我引用某些内容时,它会在括号中显示关键字而不是引用样式,例如作者姓名或引用编号。换句话说,我希望它在 PDF 中显示为“这是我的引文 [1]”,而是显示为“这是我的引文 [mykey]”。此外,在我添加 # References 标头后,我的参考列表没有显示。这是怎么回事?
以下是用于生成此命令的示例命令以及示例文件和我当前不正确的输出文件 (test.pdf)。
pandoc test.md --biblatex --biblio test.bib --csl chicago-author-date.csl -o test.pdf
test.md
% My test pandoc-ument
I want to reference this: \cite{Gepasi1993}
# References
test.bib
@ARTICLE{Gepasi1993,
Author = {P. Mendes},
Journal = {Comput. Applic. Biosci.},
Pages = {563--571},
Title = {GEPASI: A software package for modelling the dynamics, steady states and control of biochemical and other systems.},
Volume = {9},
Year = {1993}
}
test.pdf
I want to reference this: [Gepasi1993]
【问题讨论】:
标签: latex markdown pandoc biblatex