Skip to content
This repository was archived by the owner on Jan 30, 2025. It is now read-only.

Commit

Permalink
Update citation
Browse files Browse the repository at this point in the history
  • Loading branch information
nfrerebeau committed Apr 11, 2024
1 parent ca67754 commit 5147e93
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 48 deletions.
23 changes: 0 additions & 23 deletions .github/workflows/draft-pdf.yml

This file was deleted.

3 changes: 3 additions & 0 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,9 @@ identifiers:
- description: The versioned DOI for version 1.0.2.
type: doi
value: 10.5281/zenodo.10046426
- description: The versioned DOI for version 1.0.3.
type: doi
value: 10.5281/zenodo.10926190
- description: The Software Heritage identifier for version 1.0.2.
type: swh
value: swh:1:rel:10b21ffbf3914a6a084766e8f704388582408a6e
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# aion 1.0.3
* Published in the *Journal of Open Source Software*.
* Published in the [*Journal of Open Source Software*](https://doi.org/10.21105/joss.06210).

# aion 1.0.2
## Bugfixes & changes
Expand Down
10 changes: 7 additions & 3 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ Sys.setlocale("LC_MESSAGES", 'en_GB.UTF-8') # Force locale

[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)

[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.8032278.svg)](https://doi.org/10.5281/zenodo.8032278)
[![DOI Zenodo](https://zenodo.org/badge/DOI/10.5281/zenodo.8032278.svg)](https://doi.org/10.5281/zenodo.8032278)
[![DOI JOSS](https://joss.theoj.org/papers/10.21105/joss.06210/status.svg)](https://doi.org/10.21105/joss.06210)
<!-- badges: end -->

## Overview
Expand All @@ -43,8 +44,11 @@ Once a time series is created with **aion**, any calendar can be used for printi

**aion** does not provide tools for temporal modeling. Instead, it offers a simple API that can be used by other specialized packages.

```{r citation, echo=FALSE, comment=''}
utils::citation("aion")
---

```{r citation, echo=FALSE, comment='', results='asis'}
cite <- utils::citation("aion")
print(cite, bibtex = FALSE)
```

## Installation
Expand Down
34 changes: 15 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ alt="CRAN Downloads" /></a>
state and is being actively
developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)

[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.8032278.svg)](https://doi.org/10.5281/zenodo.8032278)
[![DOI
Zenodo](https://zenodo.org/badge/DOI/10.5281/zenodo.8032278.svg)](https://doi.org/10.5281/zenodo.8032278)
[![DOI
JOSS](https://joss.theoj.org/papers/10.21105/joss.06210/status.svg)](https://doi.org/10.21105/joss.06210)
<!-- badges: end -->

## Overview
Expand All @@ -54,28 +57,21 @@ for printing or plotting data (defaults to Gregorian Common Era; see
**aion** does not provide tools for temporal modeling. Instead, it
offers a simple API that can be used by other specialized packages.

To cite aion in publications use:
------------------------------------------------------------------------

Frerebeau N, Roe J (2024). _aion: Archaeological Time Series_.
Université Bordeaux Montaigne, Pessac, France.
doi:10.5281/zenodo.8032278 <https://doi.org/10.5281/zenodo.8032278>,
R package version 1.0.3, <https://packages.tesselle.org/aion/>.
To cite aion in publications use:

A BibTeX entry for LaTeX users is
Frerebeau N (2024). “aion: An R Package to Represent Archaeological Time
Series.” *Journal of Open Source Software*, *9*(96).
<doi:10.21105/joss.06210> <https://doi.org/10.21105/joss.06210>.

@Manual{,
author = {Nicolas Frerebeau and Joe Roe},
title = {{aion: Archaeological Time Series}},
year = {2024},
organization = {Université Bordeaux Montaigne},
address = {Pessac, France},
note = {R package version 1.0.3},
url = {https://packages.tesselle.org/aion/},
doi = {10.5281/zenodo.8032278},
}
Frerebeau N, Roe J (2024). *aion: Archaeological Time Series*.
Université Bordeaux Montaigne, Pessac, France.
<doi:10.5281/zenodo.8032278> <https://doi.org/10.5281/zenodo.8032278>, R
package version 1.0.3, <https://packages.tesselle.org/aion/>.

This package is a part of the tesselle project
<https://www.tesselle.org>.
This package is a part of the tesselle project
<https://www.tesselle.org>.

## Installation

Expand Down
17 changes: 15 additions & 2 deletions inst/CITATION
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
citHeader("To cite aion in publications use:")
bibentry(
bibtype = "Article",
key = "frerebeau2024",
author = person("Nicolas", "Frerebeau", role = "aut"),
title = "{aion: An R Package to Represent Archaeological Time Series}",
year = "2024",
journal = "Journal of Open Source Software",
volume = "9",
number = "96",
page = "6210",
doi = "10.21105/joss.06210"
)
bibentry(
bibtype = "Manual",
header = "To cite aion in publications use:",
footer = "This package is a part of the tesselle project <https://www.tesselle.org>.",
key = "R-aion",
author = c(person("Nicolas", "Frerebeau", role = "aut"),
person("Joe", "Roe", role = "aut")),
title = "{aion: Archaeological Time Series}",
Expand All @@ -12,3 +24,4 @@ bibentry(
url = "https://packages.tesselle.org/aion/",
doi = "10.5281/zenodo.8032278"
)
citFooter("This package is a part of the tesselle project <https://www.tesselle.org>.")

0 comments on commit 5147e93

Please sign in to comment.