Pandoc 是一个文档转换器,这份 pandoc 速查表包含 pandoc 命令和一些常见的 pandoc 技巧。
简单的 .tex 转 .docx
$ pandoc -s file.tex -o file.docx
.tex 转 .docx(带默认引文)
$ pandoc -s file.tex --citeproc --bibliography=bib_library.bib -o file.docx
.tex 转 .docx(带特定引文样式)
$ pandoc -s file.tex --citeproc --bibliography=bib_library.bib --csl=apa.csl -o file.docx
从这里获取 .csl
文件
.tex 转 .docx(带交叉引用)
$ pandoc -s file.tex --filter pandoc-crossref -o file.docx
从这里获取过滤器 pandoc-crossref