I want to write a markdown file with references @ref (and a BibTeX database). When sending the file around, it should be converted to a stand alone markdown file containing rendered references. The rendered reference key should not be numeric, but alphanumeric.
Minimal example:
minimal.md:
@PTDL2008
minimal.bib:
@article{PTDL2008,
title = {{Service-Oriented Computing: State of the Art and Research Challenges}},
author = {Michael P. Papazoglou and Paolo Traverso and Schahram Dustdar and Frank Leymann},
journal = {International Journal of Cooperative Information Systems (IJCIS)},
year = {2008},
month = {June},
number = {2},
pages = {233--255},
volume = {17},
doi = {10.1109/MC.2007.400}
}
Get DIN 1505-2 (alphanumeric, German) and store it in the same directory.
Command line call:
pandoc minimal.md -o minimal-new.md --atx-headers --bibliography="minimal.bib" --csl=din-1505-2-alphanumeric.csl
The result output is
pandoc-citeproc reference with no printed form
The generated minimal-new.md does not contain a rendered reference.