2016-12-25 00:43:47 +01:00
|
|
|
#!/bin/sh
|
2019-06-05 10:46:49 +02:00
|
|
|
# To install required tools in debian:
|
|
|
|
# sudo apt-get install pandoc texlive-latex-base texlive-fonts-recommended texlive-latex-extra
|
2009-11-15 20:04:05 +01:00
|
|
|
|
2020-07-23 16:39:23 +02:00
|
|
|
pandoc manual.md -o manual.pdf -s --number-sections --toc -f markdown --pdf-engine=xelatex --listings -V mainfont="Segoe UI" -V monofont="Consolas" -V geometry:a4paper -V geometry:margin=2.4cm -H manual-style.tex
|
|
|
|
|
2020-07-15 21:57:49 +02:00
|
|
|
pandoc manual.md -o manual.html -s --number-sections --toc --css manual.css
|
2009-11-15 20:04:05 +01:00
|
|
|
|
2019-11-15 21:35:41 +01:00
|
|
|
pandoc reference-cfg-format.md -o reference-cfg-format.pdf -s --number-sections --toc
|
|
|
|
pandoc reference-cfg-format.md -o reference-cfg-format.html -s --number-sections --toc
|