-
Notifications
You must be signed in to change notification settings - Fork 55
Org cite
Bruce D'Arcus edited this page May 20, 2021
·
52 revisions
This provides a mapping from possible org-cite
style and sub-style names to different export formats.
For citeproc-org
, the asterisk represents a suggested supported style.
org-cite style | org-cite shortcut | natbib | biblatex | citeproc-org | notes |
---|---|---|---|---|---|
default (no style) | \citep | \autocite | default | ||
text | t | \citet | \textcite | * | |
author | a | \citeauthor | \citeauthor | * | |
title | ti | \citetitle | * | ||
year | y | \citeyear | \citeyear | * | |
locators | l | \pnotecite | * | page numbers and such only (p23) | |
nocite | n | \nocite | * |
Note that CSL implementations like citeproc-el
are based around biblatex autocite-like functionality as default.
The CSL style controls how the default cite command is formatted.
While this is less-flexible than biblatex, for example, it's simpler for the user, as you use the same base command regardless of whether you are using an author-date, numeric, or note-based style.
A number of citation systems allow styles variants; for example, dropping enclosing punctuation to integrate the full citation in text.
-
bare (b) (removes citation enclosing punctuation; for example
cite:locators/bare
-> biblatex\notecite
) -
full (f) (rather than shortened, author list; for example
\citet*
) - caps (c) (force initial capitalization)
[ADD ANOTHER TABLE HERE?]