The Fatiando packages that don't have a paper associated with instruct users to cite them using the Zenodo entry. The BibTeX entries that Zenodo creates look like this (the one for Choclo):
@software{fatiando_a_terra_project_2023_7931023,
author = {Fatiando a Terra Project and
Soler, Santiago R. and
Uieda, Leonardo},
title = {{Choclo v0.1.0: Kernel functions for your
geophysical models}},
month = may,
year = 2023,
publisher = {Zenodo},
version = {v0.1.0},
doi = {10.5281/zenodo.7931023},
url = {https://doi.org/10.5281/zenodo.7931023}
}
When these entries are rendered in LaTeX they end up looking like this:
- Inline citation:
(a Terra Project et al., 2023)
- Citation in References:
F. a Terra Project, S. R. Soler, and L. Uieda. Choclo v0.1.0: Kernel functions for your
geophysical models, May 2023. URL https://doi.org/10.5281/zenodo.7931023.
The "Fatiando a Terra Project" is treated as first name + middle names + last name, instead of the name of an organization. If we put it inside curly braces, we fix this issue:
@software{fatiando_a_terra_project_2023_7931023,
author = {{Fatiando a Terra Project} and
Soler, Santiago R. and
Uieda, Leonardo},
title = {{Choclo v0.1.0: Kernel functions for your
geophysical models}},
month = may,
year = 2023,
publisher = {Zenodo},
version = {v0.1.0},
doi = {10.5281/zenodo.7931023},
url = {https://doi.org/10.5281/zenodo.7931023}
}
- Inline citation:
(Fatiando a Terra Project et al., 2023)
- Citation in References:
Fatiando a Terra Project, S. R. Soler, and L. Uieda. Choclo v0.1.0: Kernel functions for your
geophysical models, May 2023. URL https://doi.org/10.5281/zenodo.7931023.
Question
Should we include a BibTeX snippet in the Citation pages of our packages? This would solve the current issue by providing our users a quick way to cite our packages without this problem.
Also, I think this could probably worth contacting Zenodo to provide a way to mark authors as organizations instead of real persons.
The Fatiando packages that don't have a paper associated with instruct users to cite them using the Zenodo entry. The BibTeX entries that Zenodo creates look like this (the one for Choclo):
When these entries are rendered in LaTeX they end up looking like this:
(a Terra Project et al., 2023)The "Fatiando a Terra Project" is treated as first name + middle names + last name, instead of the name of an organization. If we put it inside curly braces, we fix this issue:
(Fatiando a Terra Project et al., 2023)Question
Should we include a BibTeX snippet in the Citation pages of our packages? This would solve the current issue by providing our users a quick way to cite our packages without this problem.
Also, I think this could probably worth contacting Zenodo to provide a way to mark authors as organizations instead of real persons.