In BibLaTeX it is possible to specify an abbreviation for an author, so that the short term is used in citations and the long term in the bibliography:
@misc{nasa,
author = {{National Aeronautics and Space Administration}},
shortauthor = {{NASA}},
title = {Rocket Science},
year = 2019
}
Then the text becomes:
Rocket science is difficult (NASA 2019).
And the bibliography:
National Aeronautics and Space Administration (NASA), 2019, "Rocket Science".
Is this behaviour possible using pandoc-citeproc?
In case this is relevant, my Pandoc command is pandoc chapters/*.md --standalone --filter pandoc-fignos --filter pandoc-citeproc --template template.tex --top-level-division=part --listings --output out.pdf
and the References section looks like this:
---
bibliography: references.bib
link-citations: true
nocite: '@*'
---
## References {.unnumbered}
In the Pandoc manual, I came across a --citation-abbreviations
option which sounds like it could be what I'm after, but I couldn't find further useful documentation for it.