summaryrefslogtreecommitdiff
path: root/doc/format-pdf
blob: 6915245f228d476ad89117b027530d4898a0f8f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

set -eu

output="$1"
shift

pandoc --smart \
       --toc \
       --chapters \
       --number-sections \
       -Vdocumentclass:report \
       -Vgeometry:a4paper \
       -Vfontsize:12pt \
       -Vmainfont:FreeSans \
       -Vsansfont:FreeSans \
       -Vmonofont:FreeMonoBold \
       --latex-engine=xelatex \
       -o "$output" "$@"