mirror of
https://github.com/Wandmalfarbe/pandoc-latex-template.git
synced 2025-01-31 08:25:34 +00:00
1.3 KiB
1.3 KiB
Eisvogel pandoc LaTeX template
A clean pandoc LaTeX template to convert your markdown files to PDF or LaTeX.
Installation
- Install pandoc from http://pandoc.org/. You also need to install LaTeX.
- Move the template
eisvogel.latex
to your pandoc templates folder at~/.pandoc/templates/
.
Usage
-
Open the terminal and navigate to the folder where your markdown file is located.
-
Execute the following command
pandoc Myfile.md -o Myfile.pdf --from markdown --template eisvogel --listings --latexmathml
where
MyFile.md
is the markdown file you want to convert to PDF.
In order to have nice headers and footers you need to supply metadata to your Document. You can do that with a YAML metadata block at the top of your markdown document (see the example markdown file). Your markdown document may look like the following:
---
title: "The Document Title"
author: [Example Author, Another Author]
date: 2017-02-20
tags: [Markdown, Example]
...
Here is the actual document text...