cite

.cite key:{String} -> Node

Creates a citation to a bibliography entry.

The result is a label that matches with that of the bibliography entry with the given key.

Example:

bibliography.bib

@article{einstein,
...
}

...

Quarkdown:

Einstein's work .cite {einstein} is fundamental to modern physics.

.bibliography {bibliography.bib}

Result:

Einstein's work [1] is fundamental to modern physics.

Return

a wrapped BibliographyCitation node

Parameters

key

the key of the bibliography entry to cite

Wiki page

Bibliography#citations