Pandoc Cheat Sheet

Pandoc is a document converter, this pandoc cheat sheet contains pandoc commands and some common pandoc tricks

Pandoc examples

LaTeX to MS Word

Simple .tex to .docx

$ pandoc -s file.tex -o file.docx

.tex to .docx with default citations

$ pandoc -s file.tex --citeproc --bibliography=bib\_library.bib -o file.docx

.tex to .docx with specific citations

$ pandoc -s file.tex --citeproc --bibliography=bib\_library.bib --csl=apa.csl -o file.docx

Get .csl file from here .tex to .docx with cross references

$ pandoc -s file.tex --filter pandoc-crossref -o file.docx

Get the filter pandoc-crossref from here

Getting Started

Pandoc Usage

Syntax

$ pandoc -s [source file] -o [output file]