When you add a citation in Curvenote they automatically show up in your site, including a references section at the bottom of the page. These citations are able to be clicked on to see more information. There are two different ways to add citations to your documents: (1) adding a markdown link to a DOI; and (2) by adding a bibtex file, which can be exported from any reference manager.

Simple Referencing with a DOI Link

🛠️ Add references easily to your markdown files or Jupyter Notebooks by including the citation as a link to the doi. For example:

([Purves, 2014](https://doi.org/10.1190/tle33101164.1))

Provided the doi is formatted correctly, this will be changed during the build process, to a citation with a pop-up panel on hover like this: Purves, 2014, and the reference information will be automatically added to the reference section at the bottom of your notebook (see below👇).

Providing your DOIs as links has the advantage that on other rendering platforms, your citation will still be shown as a link. If you have many citations, however, this can slow down the build process as the citation information is fetched dynamically.

Including BibTex

A standard way of including references for LaTeX\LaTeX is using bibtex, you can reference these files directly through including a references.bib file in the same directory as your content directory for the project. These will provide the reference keys for that project.

To create a citation in Markdown, use either a parenthetical or textual citation:

This is a parenthetical citation {cite:p}`purves2014`.
You can also use a narrative citation with {cite:t}`purves2014`.

This is the difference between: Purves, 2014 and Purves (2014). You can have many citation keys in a single role, by separating them with a ;.

You can also include DOIs in citations (cite, cite:t, and cite:p) which will be linked in the same way as a simple markdown link, but will match the reference style of the project.

This will be a citation: {cite}`10.7554/eLife.59045`.
References
  1. Purves, S. (2014). Phase and the Hilbert transform. The Leading Edge, 33(10), 1164–1166. 10.1190/tle33101164.1