Citations and Bibliography
Part of the motivation for using Pandoc
for this package was that it supports citations and bibliographies through citeproc. Given a markdown document with citations in it and a .bib
file, Pandoc
can generate a formatted document with citations and a bibliography.
This package maintains some easy-to-use functions for working with citations and bibliographies in markdown documents.
stderr:
/tmp/ipykernel_1016843/3729719973.py:3: DeprecationWarning: Importing display from IPython.core.display is deprecated since IPython 7.14, please import from IPython display
from IPython.core.display import display, HTML
Citation Auto-complete
Check out the pandoc citer VSCode plugin for citation auto-complete as you edit your documents.
In the document YAML header, you will need to provide the bibliography attribute.
Compiling Documents with Citations
Most importantly for our purposes, we should be able to compile a document that includes citations automatically from a database. We can do this by specifying the citeproc_bibliography
argument in PandocArgs
. This argument should be a path to a .bib
file.
In this example I write the bibtex data to a temporary file which is then used to compile the document.
text:
<IPython.core.display.HTML object>
html:
<p>Use citations like this <span class="citation"
data-cites="Angelou1969">(Angelou 1969)</span> or this <span
class="citation" data-cites="Cohen1963">(1963)</span>.</p>
<div id="refs" class="references csl-bib-body hanging-indent"
role="doc-bibliography">
<div id="ref-Angelou1969" class="csl-entry" role="doc-biblioentry">
Angelou, Maya. 1969. <em>I Know Why the Caged Bird Sings</em>. 1st ed.
Random House.
</div>
<div id="ref-Cohen1963" class="csl-entry" role="doc-biblioentry">
Cohen, P. J. 1963. <span>“The Independence of the Continuum
Hypothesis.”</span> <em>Proceedings of the National Academy of
Sciences</em> 50 (6): 1143–48.
</div>
</div>
You can change the bibtex file if you have any issues with the citation information.