pandoc无法正常转换乳胶风格引文(pandoc not converting latex sty

2019-08-06 12:56发布

我想用乳胶式引用\cite{key}我降价,这样我可以创造很好地利用pandoc特克斯和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}
}

检验.pdf

I want to reference this: [Gepasi1993]

Answer 1:

--biblatex选项不是直接降价写作biblatex。 它所做的是转换本地pandoc降价引用,像

[@Gepasil1993, p. 5] 

到biblatex在乳胶输出引文。

如果您使用pandoc降价引用代替乳胶的人,你会发现,引文工作。 使用此命令:

pandoc test.md --biblio test.bib --csl chicago-author-date.csl -o test.pdf 

与此输入:

I want to reference this: [@Gepasi1993] 

Pandoc的引文格式中记录Pandoc用户指南 。

如果你真的想在你的降价输入使用原始biblatex引用,你可以,但你需要采取的书目东西照顾自己。 你会做这种方式:

pandoc test.md --parse-raw -t latex -s > test.tex 
pdflatex test 
biber test 
pdflatex test 
pdfltatex test 


文章来源: pandoc not converting latex style citations correctly