#' theme_textbook
#'
#' theme_bw() + no grid + no box + no background
#' @param ... argument pass to theme_bw()
#' @return a gg theme
#' @export
#'
theme_textbook = function(...){
theme_bw(...) +
theme(axis.line = element_line(colour = "black"),
#panel.grid.major = element_blank(),
#panel.grid.minor = element_blank()
panel.border = element_blank(),
panel.background = element_blank()
)
}
#' theme_paper
#'
#' theme_bw() + no grid + no box + no background
#' @param ... argument pass to theme_bw()
#' @return a gg theme
#' @export
#'
theme_paper = function(...){
theme_bw(...) +
theme(axis.line = element_line(colour = "black"),
panel.border = element_blank(),
panel.background = element_blank(),
panel.grid.minor = element_blank(),
legend.title = element_blank()
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.