Skip to content

Instantly share code, notes, and snippets.

@PMaynard
Created April 20, 2016 15:26
Show Gist options
  • Save PMaynard/ec7c634d37dc19dd8e45b9755d5f26e0 to your computer and use it in GitHub Desktop.
Save PMaynard/ec7c634d37dc19dd8e45b9755d5f26e0 to your computer and use it in GitHub Desktop.
pandoc markdown to latex to pdf
pandoc --toc \
--toc-depth=4 \
--bibliography=../MyLibrary.bib \ #bittext file
--filter pandoc-citeproc \
--csl=ieee.csl \ # referrence format
--number-sections \
--template style/template.tex \ # latex template optional
-V documentclass=report \
-V papersize=a4paper \
-V fontsize=12pt \
$IN -o $OUT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment