#' @title Make Citation for comparing publication matches.
#' @description Takes in a set of fields and concatenates them using a period. Really simple.
#' @export
makeCite <- function(x, ...) {
paste(x, ..., sep = ". ")
}
#' @export
pullAuth <- function(x) {
x@authors %>%
map(function(y) paste(y@author@familyname, y@author@givennames, sep=', ')) %>%
unlist()
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.