Meta information on an author

Meta information on an author

def_author(given, family, email = NULL, github = NULL, orcid = NULL)

Arguments

given

The given name

family

The family name

email

The email address

github

The github handle

orcid

The orcid id

Examples

def_author( given = "Bob", family = "Dylan", email = "bob@dylan.com", github = "bobdylan", orcid = "0000-0003-1234-5678" )
#> $given #> [1] "Bob" #> #> $family #> [1] "Dylan" #> #> $email #> [1] "bob@dylan.com" #> #> $github #> [1] "bobdylan" #> #> $orcid #> [1] "0000-0003-1234-5678" #>