pandoc_boilerplate/README.md

26 lines
772 B
Markdown
Raw Normal View History

2016-01-25 14:54:02 +01:00
Pandoc boilerplate
==================
Boilerplate to render scientific documents written in Markdown to LaTeX, using
Pandoc.
Includes various Pandoc filters:
* Automatically convert `SVG` files to `PDF` and rewrite the image link to
include them in the document easily.
2016-01-25 14:54:02 +01:00
* Include [pandoc-crossref](https://github.com/lierdakil/pandoc-crossref) for
easy numbering and referencing.
2016-01-25 14:54:02 +01:00
* Convert simple fractions like "(n / k)" to LaTeX's "\\frac{n}{k}" when n and
k are integers in a math environment.
2016-01-25 14:54:02 +01:00
2016-03-23 18:56:19 +01:00
* automatically convert function names (cos, sin, exp, log) to their
LaTeX equivalent (\\cos and so on) when in a mathematical environment,
2016-01-25 14:54:02 +01:00
then taking out the useless leading `\`.
## TODO
2016-01-25 14:54:02 +01:00
* anything else like this that could help writing more readable LaTeX
code :)