我正在尝试用RStudio中的knitr/pandoc从rmd生成一个.docx文件。但我收到以下错误消息状态83,我无法解决状态消息。任何建议或帮助都会很好。非常感谢。塞巴斯蒂安
system(paste0("pandoc -o ", name, ".docx ", name, ".md --bibliography sukstorf.bib"))
pandoc-citeproc: "stdin" (line 421, column 2):
unexpected "O"
expecting "c", "C", "p", "P", "s" or "S"
pandoc.exe: Error running filter pandoc-citeproc
Warning message:
running command 'pandoc -o hr-statistik-mit-r.docx hr-statistik-mit-r.md --bibliography sukstorf.bib' had status 83发布于 2016-04-23 11:07:04
我刚刚遇到了同样的问题"bibliography...had status 83":原来是.bib文件中的一个条目出现了语法错误。我通过一次删除.bib中的一个条目并重新编织,直到我找到生成错误的条目,从而找到了它。
发布于 2014-03-26 00:30:25
我很确定你需要--bibliography sukstorf.bib成为--bibliography=sukstorf.bib
https://stackoverflow.com/questions/22640467
复制相似问题