Wandmalfarbe / pandoc-latex-template

A pandoc LaTeX template to convert markdown files to PDF or LaTeX.
BSD 3-Clause "New" or "Revised" License
5.96k stars 954 forks source link
eisvogel koma-script latex latex-template markdown markdown-to-pdf pandoc pandoc-template pandoc-templates pdf pdf-generation tex

Eisvogel

A clean pandoc LaTeX template to convert your markdown files to PDF or LaTeX. It is designed for lecture notes and exercises with a focus on computer science. The template is compatible with pandoc 3.

Preview

A custom title page A basic example page
A custom title page A basic example page

Installation

  1. Install pandoc from http://pandoc.org/. You also need to install LaTeX.
  2. Download the latest version of the Eisvogel template from the release page.
  3. Extract the downloaded ZIP archive and open the folder.
  4. Move the template eisvogel.latex to your pandoc templates folder. The location of the templates folder depends on your operating system:

    • Unix, Linux, macOS: /Users/USERNAME/.local/share/pandoc/templates/ or /Users/USERNAME/.pandoc/templates/
    • Windows Vista or later: C:\Users\USERNAME\AppData\Roaming\pandoc\templates\

    If there are no folders called templates or pandoc you need to create them and put the template eisvogel.latex inside. You can find the default user data directory on your system by looking at the output of pandoc --version.

Docker image

Alternatively, if you don't want to install LaTeX, you can use the Docker image named pandoc/extra. The image contains pandoc, LaTeX and a curated selection of components such as the eisvogel template, pandoc filters and open source fonts. A common use of the image looks like this (line breaks for readability):

docker run --rm \
       --volume "$(pwd):/data" \
       --user $(id -u):$(id -g) \
       pandoc/extra example.md -o example.pdf --template eisvogel --listings

For frequent command line use, you can define the following shell alias:

alias pandock='docker run --rm -v "$(pwd):/data" -u $(id -u):$(id -g) pandoc/extra'

The example invocation with Docker from above now looks like this:

pandock example.md -o example.pdf --template eisvogel --listings

Usage

  1. Open the terminal and navigate to the folder where your markdown file is located.

  2. Execute the following command

    pandoc example.md -o example.pdf --from markdown --template eisvogel --listings

    where example.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"
keywords: [Markdown, Example]
...

Here is the actual document text...

Custom Template Variables

This template defines some new variables to control the appearance of the resulting PDF document. The existing template variables from pandoc are all supported and their documentation can be found in the pandoc manual.

Required LaTeX Packages

LaTeX manages addons and additional functionality in so called packages. You might get the following error when compiling a document with the Eisvogel template:

! LaTeX Error: File `footnotebackref.sty' not found.

Type X to quit or <RETURN> to proceed,
or enter new name. (Default extension: sty)

Enter file name:
! Emergency stop.
<read *>

LaTeX informs you that the additional package footnotebackref is required to render the document.

Texlive

Eisvogel requires a full texlive distribution that can be installed by running apt-get install texlive-full in the terminal. Because texlive-full is very large (about 5 Gigabytes) you can also install the smaller texlive bundles and add any missing packages manually.

A smaller texlive bundle is texlive-latex-extra. With texlive-latex-extra you also need to install these packages manually:

adjustbox babel-german background bidi collectbox csquotes everypage filehook
footmisc footnotebackref framed fvextra letltxmacro ly1 mdframed mweights
needspace pagecolor sourcecodepro sourcesanspro titling ucharcat ulem
unicode-math upquote xecjk xurl zref

Install them with the following command:

tlmgr install soul adjustbox babel-german background bidi collectbox csquotes everypage filehook footmisc footnotebackref framed fvextra letltxmacro ly1 mdframed mweights needspace pagecolor sourcecodepro sourcesanspro titling ucharcat ulem unicode-math upquote xecjk xurl zref

Additional information about the different texlive packages can be found at this TeX-StackExchange answer: https://tex.stackexchange.com/a/504566

MiKTeX

If you don't want to install all missing packages manually, MiKTeX might be an alternative.

MiKTeX has the ability to automatically install missing packages. You can turn this feature on or off. And you can let MiKTeX ask you each time a package has to be installed:

  • Click Settings to navigate to the settings page.
  • Click the General tab.
  • Click one of the radio buttons:
    • Ask me
    • Always install missing packages on-the-fly
    • Never install missing packages on-the-fly

Examples

Numbered Sections

For PDFs with numbered sections use the --number-sections or -N option.

pandoc example.md -o example.pdf --template eisvogel --number-sections

Syntax Highlighting with Listings

You can get syntax highlighting of delimited code blocks by using the LaTeX package listings with the option --listings. This example will produce the same syntax highlighting as in the example PDF.

pandoc example.md -o example.pdf --template eisvogel --listings

Syntax Highlighting Without Listings

The following examples show syntax highlighting of delimited code blocks without using listings. To see a list of all the supported highlight styles, type pandoc --list-highlight-styles.

pandoc example.md -o example.pdf --template eisvogel --highlight-style pygments
pandoc example.md -o example.pdf --template eisvogel --highlight-style kate
pandoc example.md -o example.pdf --template eisvogel --highlight-style espresso
pandoc example.md -o example.pdf --template eisvogel --highlight-style tango

Standalone LaTeX Document

To produce a standalone LaTeX document for compiling with any LaTeX editor use .tex as an output file extension.

pandoc example.md -o example.tex --template eisvogel

Changing the Document Language

The default language of this template is American English. The lang variable identifies the main language of the document, using a code according to BCP 47 (e.g. en or en-GB). For an incomplete list of the supported language codes see the documentation for the hyph-utf8 package (Section 2). The following example changes the language to British English:

pandoc example.md -o example.pdf --template eisvogel -V lang=en-GB

The following example changes the language to German:

pandoc example.md -o example.pdf --template eisvogel -V lang=de

Typesetting a Book

To typeset a book supply the template variable -V book from the command line or via book: true in the metadata.

To get the correct chapter headings you need to tell pandoc that it should convert first level headings (indicated by one # in markdown) to chapters with the command line option --top-level-division=chapter. Chapter numbers start at 1. If you need to change that, specify first-chapter in the template variables.

There will be one blank page before each chapter because the template is two-sided per default. So if you plan to publish your book as a PDF and don’t need a blank page you should add the class option onesided which can be done by supplying a template variable -V classoption=oneside.

Example Images

A green title page A background image on the title page
A green title page A background image on the title page
images and tables Code blocks styled without listings
images and tables Code blocks styled without listings
A book Code blocks styled with listings
A book Code blocks styled with listings
A background images on all pages CJK Support (when using XeLaTeX)
A background images on all pages CJK Support (when using XeLaTeX)

Common Errors / Issues

The following section lists common errors and their solutions when using the Eisvogel template.

LaTeX Errors Missing endcsname inserted or File x not found when using titlepage-background, logo, or titlepage-logo.

Error producing PDF.
! Missing endcsname inserted.
<to be read again>
                   protect
Error producing PDF.
! Package pdftex.def Error: File `logo\T1\textunderscoreimage.pdf' not fou
nd: using draft setting.

See the pdftex.def package documentation for explanation.
Type  H <return>  for immediate help.

These errors occur when one includes a background image on the title page or a logo that has an underscore (_) in the filename.

A quick fix would be to replace all underscores in the filename of the image with a hyphen (-). If the background image is specified in your YAML front matter like so,

titlepage-background: "background_image.pdf"

you can advise pandoc to interpret this as LaTeX and include it in the document without parsing.

titlepage-background: "`background_image.pdf`{=latex}"

The same fix can be used for the logo image as well:

logo: "`logo_image.pdf`{=latex}"

Corresponding issues:

LaTeX Error Missing \begin{document}

! LaTeX Error: Missing \begin{document}.

See the LaTeX manual or LaTeX Companion for explanation.
Type  H <return>  for immediate help.
 ...

l.7 <
     !DOCTYPE html>
!  ==> Fatal error occurred, no output PDF file produced!

This error indicates that you try to use some text file for conversion that is not the Eisvogel template. Please download the latest Eisvogel template from the releases page and start the conversion again.

LaTeX Error auto expansion is only possible with scalable fonts

Error producing PDF.
! pdfTeX error (font expansion): auto expansion is only possible with scalable
fonts.
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
                                                  \fi \fi
l.643 \begin{lstlisting}

This error likely occurs on Windows with MiKTeX installed. StackOverflow user Krebto provided the following fix:

To solve the problem navigate to C:\Program Files\MiKTeX 2.9\miktex\bin\x64 and run updmap.exe. The program may seem as it hangs for a while, but its probably because it tries to update the whole font tree. This solved the problem for me. After re-compiling everything should work fine.

Corresponding issue:

LaTeX Error cannot find image file

Error producing PDF.
! error:  (file "/tmp/tex2pdf.-be734e802ef6d0c3/""fdcfc29edcf252186f1b0a52f18f50
43abaeb2d0".png) (pdf backend): cannot find image file '"/tmp/tex2pdf.-be734e802
ef6d0c3/""fdcfc29edcf252186f1b0a52f18f5043abaeb2d0".png'
!  ==> Fatal error occurred, no output PDF file produced!

In general this error means that LaTeX is unable to find the included image file. Please check all image references and file names for correctness.

This error also occurs if you use an old version of Eisvogel with the package grffile and have an old LaTeX distribution installed. Please update Eisvogel and your LaTeX distribution.

Corresponding issues:

Credits

License

This project is open source licensed under the BSD 3-Clause License. Please see the LICENSE file for more information.