r3f.cn
GitHub Repo stars

Pandoc

Pandoc 是一个文档转换器,这份 pandoc 速查表包含 pandoc 命令和一些常见的 pandoc 技巧。

#入门指南

#Pandoc 用法

语法

$ pandoc -s [源文件] -o [输出文件]

#Pandoc 示例

#LaTeX 转 MS Word

简单的 .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

#另请参阅