Prerequisites

Pandoc

Preface

I quite like markdown. It isn’t perfect, it doesn’t have the power of Latex, but it stays pretty close to plain text, and unlike Latex it won’t confuse the uninitiated. It keeps things simple. It can also be rendered by GitHub and Jekyll - both advantages to me.

I wanted to move from .odt and .doc to markdown for the reasons above, but also so I could focus on writing while writing, rather than formatting. My plan was to write in markdown, and then render this as a PDF, using CSS or similar to format this.

Simple unformatted PDF creation

After a bit of research, I turned to pandoc for this task.

pandoc -o output.pdf input.md

Pandoc md to PDF set margins

This works, but the margins are too wide for my liking. So let’s change that.

pandoc -t html5 \
    -V margin-top=25 \
    -V margin-left=25 \
    -V margin-right=25 \
    -V margin-bottom=25 \
    -o output.pdf \
    input.md

Using the -t flag sets the output format, but setting it to html5, in combination with outputting to a PDF, will convert the Markdown using an HTML-to-PDF-engine (by default wkhtmltopdf).

Using this HTML-to-PDF-engine allows us to set the margin sizes using -V. We can now also set papersize (-V papersize=a4), and use CSS to style the document (--css styles.css).

Setting Paper Size and Styling

pandoc -t html5 \
    --metadata pagetitle="My Title" \
    -o output.pdf \
    --css styles.css \
    -V margin-top=25 \
    -V margin-left=25 \
    -V margin-right=25 \
    -V margin-bottom=25 \
    -V papersize=a4 \
    input.md