> # Multiple given/family names
> person_desc(c("First", "Second"), c("Family1", "Family2"))
[1] "First Second Family1 Family2 \\email{h@w.com}"

> # Multiple roles
> person_desc(role = "ctb")
[1] "H W \\email{h@w.com} [contributor]"

> # ORCID comments
> person_desc(comment = c(ORCID = "1234"))
[1] "H W \\email{h@w.com} (\\href{https://orcid.org/1234}{ORCID})"

> person_desc(comment = c(ORCID = "https://orcid.org/1234"))
[1] "H W \\email{h@w.com} (\\href{https://orcid.org/1234}{ORCID})"

> person_desc(comment = c(ORCID = "1234", "extra"))
[1] "H W \\email{h@w.com} (\\href{https://orcid.org/1234}{ORCID}) (extra)"

