Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 8 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,23 +124,14 @@ Learn more about `mwanaApp` and how to install and use
If you use `mwana` package in your work, please cite using the suggested
citation provided by a call to `citation()` function as follows:

``` r
citation("mwana")
#> To cite mwana in publications use:
#>
#> Tomás Zaba, Ernest Guevarra, Mark Myatt (2025). _mwana: An Efficient
#> Workflow for Plausibility Checks and Prevalence Analysis of Wasting
#> in R_. R package version 0.2.3, <https://mphimo.github.io/mwana/>.
#>
#> A BibTeX entry for LaTeX users is
#>
#> @Manual{,
#> title = {mwana: An Efficient Workflow for Plausibility Checks and Prevalence Analysis of Wasting in R},
#> author = {{Tomás Zaba} and {Ernest Guevarra} and {Mark Myatt}},
#> year = {2025},
#> note = {R package version 0.2.3},
#> url = {https://mphimo.github.io/mwana/},
#> }
``` bibtex
@Manual{,
title = {mwana: An Efficient Workflow for Plausibility Checks and Prevalence Analysis of Wasting in R},
author = {{Tomás Zaba} and {Ernest Guevarra} and {Mark Myatt}},
year = {2025},
note = {R package version 0.2.3},
url = {https://mphimo.github.io/mwana/},
}
```

## Community guidelines
Expand Down
6 changes: 5 additions & 1 deletion README.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,12 @@ If you use `mwana` package in your work, please cite using the suggested citatio

```{r}
#| label: citation
#| results: asis
#| echo: false

citation("mwana")
cat("```bibtex\n")
print(citation("mwana"), style = "bibtex")
cat("```\n")
```

## Community guidelines
Expand Down