I have a question regarding generating markdown from .bib files. I've arrived at pandoc being the thing that would likely be most useful, but my attempts have failed. I tried using the following bib file (refs.bib):
@article{Author:2000aaa,
author = "AuthorA, O. and AuthorB, T. and AuthorC, F.",
title = "{Some title}",
eprint = "2000.00001",
archivePrefix = "arXiv",
primaryClass = "hep-ph",
doi = "10.1111/Some.DOI",
journal = "Journal",
volume = "1",
number = "1",
pages = "111111",
year = "2000"
month = "1"
}
you know - some generic bib file with a journal record and arxiv stuff. Now what I'd like to do is to change that to markdown, so a static website generator can make a website from it.
What I've tried are various combinations on:
pandoc --citeproc --bibliography=refs.bib --csl=chicago-annotated-bibliography.csl -o refs.md
and variations on this with whatever I found on se or te - but none of it works. I always get an empty refs.md file and I cannot figure it out.
Here are the questions:
- is pandoc the correct software to use, or did I go down a rabbit hole?
- if pandoc is the right place, how do I call it to do what I want?
- if pandoc is incorrect - what is the alternative.
p.s.: copy-pasting each entry by hand to refs.md obviously works, but its not very automatic :(
.texfile that does\nocite{*}. Normally the.bibfile is a database and from it only cited entries are included in the bibliography. – Willie Wong Aug 16 '21 at 14:20