This repo contains material related to Forwards (the R foundation taskforce promoting diversity in the R community) branding, organized as an R package for easier distribution and use.
# install.packages("devtools")
devtools::install_github("forwards/fwdbrand")
-
Logo (transparent background) as png and svg. White background logo.
Create a certificate for the participants of a workshop using create_workshop_certificates
. See example below. PDFs are created in the folder indicated by dir
.
# Fake names generated via charlatan::ch_name
attendees <- c("Marnie Dickinson", "Dr. Marlin Wilderman")
date <- as.Date("2018-01-01")
location <- "University of Lorraine"
workshop <- "Package development workshop"
curriculum <- system.file("rmarkdown", "templates",
"workshop_certificate", "resources",
"default_workshop_contents.md", package = "fwdbrand")
certifier <- "Zaire Crooks"
credentials <- "Forwards teaching team member"
dir <- "certificates"
create_workshop_certificates(date, location,
workshop, curriculum,
certifier,
credentials,
attendees,
dir)
Note that the template uses a lot of LaTeX packages, if you use the TinyTex distribution provided by the tinytex package, it will take a long time to compile the first time as it installs the required packages on the fly.
The Forwards logo is a derivative of the R logo, ©2016 The R Foundation, used under CC BY-SA 4.0. The Forwards logo is licensed under CC BY-SA 4.0, ©2016 Forwards.
Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.