Nothing
HSAURcite <- function(pkg) {
ct <- citation(pkg)
attr(ct, "label") <- paste("PKG:", pkg, sep = "", collapse = "")
for (n in c("note"))
ct[[n]] <- gsub("R", "\\R{}", ct[[n]])
class(ct) <- "HSAURcitation"
return(ct)
}
toBibtex.HSAURcitation <- function (object, ...)
{
z <- paste("@", attr(object, "entry"), "{", attr(object, "label"),
",", sep = "")
if ("author" %in% names(object)) {
object$author <- toBibtex(object$author)
}
for (n in names(object)) z <- c(z, paste(" ", n, " = {",
object[[n]], "},", sep = ""))
z <- c(z, "}")
class(z) <- "Bibtex"
z
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.