use_indiedown_gfonts {indiedown} | R Documentation |
Download and Use Google Fonts
Description
Download and use Google fonts, using the gfonts package.
Usage
use_indiedown_gfonts(
path = ".",
id = "roboto",
variants = c("regular", "300italic", "700", "700italic")
)
Arguments
path |
Package path |
id |
Id of the font, correspond to column |
variants |
Variant(s) to download, default is to includes all available ones. |
Value
This function is called for its side effects and returns NULL
, invisibly.
Examples
path <- file.path(tempdir(), "mydown")
create_indiedown_package(path, overwrite = TRUE)
# Use Lora, instead of default Roboto
use_indiedown_gfonts(
path = path,
id = "lora",
variants = c("regular", "italic", "700", "700italic")
)
[Package indiedown version 0.1.1 Index]