stevendeboer / pandoc-templates

Some elementary (xe)tex templates and css files for Pandoc, for use with latex-custom-kjh

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Pandoc Configuration and Support Files

Description

A collection of support files for use with Pandoc, and specifically for helping to turn pandoc markdown files into nice HTML, LaTeX, and PDF output. These files go in your ~/.pandoc/ folder and are designed to work with the style and configuration material provided in latex-custom-kjh, socbibs, and the Emacs Starter Kit for the Social Sciences. The only real dependencies are the latex class and style files in latex-custom-kjh, however.

Notes

What's included?

  • Some Pandoc templates for an article in PDF (vita LaTeX) or HTML. These go in ~/.pandoc/templates. These can be be pointed to directly with the --template= switch as appropriate. The latex.template and xelatex.template depend on the style files in latex-custom-kjh.

  • I preview HTML documents generated by Pandoc using Marked, a very handy HTML live previewer for markdown files. The css files in the marked/ folder are meant to be used together with pandoc and Marked. The shell script in the marked/ folder, panmarked.sh is what I previously had Marked use as a custom processor to create its HTML. You point to it in Marked > Preferences > Behavior. In the current version of the application, Marked 2, this is not needed anymore. You still tell Marked to use pandoc as its custom processor. Go to Marked > Preferences > Behavior. Then specify the file Path to Pandoc like this (e.g.): /usr/bin/pandoc and the various switches and arguments to pandoc in the 'Args' field below it, like this:

    -r markdown+simple_tables+table_captions+yaml_metadata_block -w html
    -s -S --template=/Users/kjhealy/.pandoc/templates/html.template
    --filter pandoc-citeproc
    --bibliography=/Users/kjhealy/Documents/bibs/socbib-pandoc.bib
    

    Then check the box telling Marked to use this by default.

  • The CSS files can be added in Marked > Style > Custom CSS. Marked can then use them to format the HTML output.

  • In R, knitr's knit() function will turn .Rmd files into .md files. The configuration file in the knitr/ folder is an example to help you produce HTML or .tex using knitr's pandoc() helper function.

  • The CSL files in the csl/ folder format the bibliography generated by pandoc and citeproc. (For simplicity we avoid dealing with biblatex directly at all.) The chicago-syllabus.csl file makes a tiny change to a standard Chicago Notes CSL file so you can use it to output citation information in the body text of a document. This makes it useful for lists of references in CVs and course syllabuses. The other two files are APSA and AJPS standard files from the main CSL styles repository.

  • The Makefile in the makefile/ folder helps you generate HTML, LaTeX, and PDF output from your markdown files in a convenient way. It is meant to go in the folder where you are writing your paper. It looks for .md files in the working directory and converts them to nice HTML, PDF, and LaTeX files using the templates provided here, the style files in latex-custom-kjh, and the bibliography files in socbibs. You can of course change the bibliography and template files as desired.

Contact

Kieran Healy, kjhealy@gmail.com

About

Some elementary (xe)tex templates and css files for Pandoc, for use with latex-custom-kjh