Improvements to OUP format by dmkaplan2000 · Pull Request #284 · rstudio/rticles (original) (raw)
To contribute a new article template to this package, please make sure you have done the following things (note that journalname_article
below is only an example name):
- [ X] Unless you have done it in any other RStudio's projects before, please sign the individual or corporate contributor agreement for a significant pull request (it is fine not to sign it if a PR is only intended to fix a few typos). You can send the signed copy to jj@rstudio.com.
- [ X] Add the
journalname_article()
function toR/article.R
if the output format is simple enough, otherwise create a separateR/journalname_article.R
. - [X ] Add the Pandoc LaTeX template
inst/rmarkdown/templates/journalname_article/resources/template.tex
. - [ X] Add a skeleton article
inst/rmarkdown/templates/journalname_article/skeleton/skeleton.Rmd
. - [X ] Add a description of the template
inst/rmarkdown/templates/journalname_article/template.yaml
. - [X ] Please include the document class file (
*.cls
) if needed, but please do not include standard LaTeX packages (*.sty
) that can be downloaded from CTAN. Please keep the number of new files absolutely minimal, and also make examples minimal (e.g., if you need a.bib
example, try to only leave one or two bibliography entries in it, and don't include one hundred items in it without using all of them). - [X ] Update Rd and namespace (could be done by
devtools::document()
). - [X ] Update NEWS.
- [X ] Update README with a link to the newly supported journal.
- Add a test to
tests/testit/test-formats.R
. - [X ] Add your name to the list of authors
Authors@R
in DESCRIPTION. You don't need to bump the package version in DESCRIPTION.
Lastly, please try your best to do only one thing per pull request (e.g., if you want to add two output formats, do them in two separate pull requests), and refrain from making cosmetic changes in the code base: https://yihui.name/en/2018/02/bite-sized-pull-requests/
Thank you!