Skip to content

Commit

Permalink
Use bibentry() instead of citEntry()
Browse files Browse the repository at this point in the history
  • Loading branch information
nfrerebeau committed May 24, 2023
1 parent 431ad7c commit ebf18c7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 35 deletions.
9 changes: 1 addition & 8 deletions README.Rmd
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
---
output: github_document
editor_options:
chunk_output_type: console
---

<!-- README.md is generated from README.Rmd. Please edit that file -->
Expand Down Expand Up @@ -31,20 +29,15 @@ knitr::opts_chunk$set(

A collection of [**shiny**](https://shiny.rstudio.com) application that provides exhanced graphical user interfaces for the [**gamma**](https://github.com/crp2a/gamma) package.

<details>
<summary><strong>How to cite</strong> (click to expand)</summary>

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

</details>

## Installation

You can install **gammaShiny** from [our repository](https://crp2a.r-universe.dev) with:

```{r drat-installation, eval=FALSE}
```{r universe-installation, eval=FALSE}
install.packages("gammaShiny", repos = "https://crp2a.r-universe.dev")
```

Expand Down
18 changes: 5 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,33 +22,25 @@ A collection of [**shiny**](https://shiny.rstudio.com) application that
provides exhanced graphical user interfaces for the
[**gamma**](https://github.com/crp2a/gamma) package.

<details>
<summary>
<strong>How to cite</strong> (click to expand)
</summary>


To cite gammaShiny in publications use:

Lebrun, Brice, Nicolas Frerebeau, Guilhem Paradol, Guillaume Guérin,
Norbert Mercier, Chantal Tribolo, Christelle Lahaye, and Magalie
Rizza. 2020. Gamma: An R Package for Dose Rate Estimation from
In-Situ Gamma-Ray Spectrometry Measurements. Ancient TL 38 (2): 1-5.
Lebrun B, Frerebeau N, Paradol G, Guérin G, Mercier N, Tribolo C,
Lahaye C, Rizza M (2020). "gamma: An R Package for Dose Rate
Estimation from In-Situ Gamma-Ray Spectrometry Measurements."
_Ancient TL_, *38*(2), 1-5.

Une entrée BibTeX pour les utilisateurs LaTeX est

@Article{,
title = {Gamma: An R Package for Dose Rate Estimation from In-Situ Gamma-Ray Spectrometry Measurements},
author = {Brice Lebrun and Nicolas Frerebeau and Guilhem Paradol and Guillaume Guérin and Norbert Mercier and Chantal Tribolo and Christelle Lahaye and Magali Rizza},
title = {{gamma: An R Package for Dose Rate Estimation from In-Situ Gamma-Ray Spectrometry Measurements}},
year = {2020},
journal = {Ancient TL},
volume = {38},
number = {2},
pages = {1-5},
}

</details>

## Installation

You can install **gammaShiny** from [our
Expand Down
20 changes: 6 additions & 14 deletions inst/CITATION
Original file line number Diff line number Diff line change
@@ -1,26 +1,18 @@
citHeader("To cite gammaShiny in publications use:")

citEntry(entry = "Article",
title = "Gamma: An R Package for Dose Rate Estimation from In-Situ Gamma-Ray Spectrometry Measurements",
author = c(person("Brice", "Lebrun", role = c("aut", "cre")),
bibentry(
bibtype = "Article",
header = "To cite gammaShiny in publications use:",
author = c(person("Brice", "Lebrun", role = "aut"),
person("Nicolas", "Frerebeau", role = "aut"),
person("Guilhem", "Paradol", role = "aut"),
person("Guillaume", "Guérin", role = "aut"),
person("Norbert", "Mercier", role = "aut"),
person("Chantal", "Tribolo", role = "aut"),
person("Christelle", "Lahaye", role = "aut"),
person("Magali", "Rizza", role = "aut")),
title = "{gamma: An R Package for Dose Rate Estimation from In-Situ Gamma-Ray Spectrometry Measurements}",
year = "2020",
journal = "Ancient TL",
volume = "38",
number = "2",
pages = "1-5",
url = "",

textVersion =
paste(
"Lebrun, Brice, Nicolas Frerebeau, Guilhem Paradol, Guillaume Guérin, Norbert Mercier, Chantal Tribolo, Christelle Lahaye, and Magalie Rizza. 2020.",
"Gamma: An R Package for Dose Rate Estimation from In-Situ Gamma-Ray Spectrometry Measurements.",
"Ancient TL 38 (2): 1-5."
)
pages = "1-5"
)

0 comments on commit ebf18c7

Please sign in to comment.