ยท 1 min read
Pandoc URL Citations
Learn how to use Pandoc to convert markdown documents and automatically generate URL citations for your bibliography and references.
Convert markdown to odt (intermediary for docs):
pandoc MyFile.md -f markdown -t odt -s -o MyFile.odt
Automatically add url citations to bibliography:
- install:
npm install -g pandoc-url2cite
Usage:
pandoc \
--filter=pandoc-url2cite \
--citeproc \
--csl ieee-with-url.csl \
minimal.md -o minimal.pdf
Tags:#Python