R/bold.R

Defines functions bold

Documented in bold

#' Bold face
#'
#' Transfrom characters to bold face
#' @param x character vector
#' @return a character vector formatted in bold face in latex
#' @export bold
bold <- function(x) {
  paste0("\\textbf{", x, "}")
}
basilrabi/latextools documentation built on May 24, 2021, 2:32 a.m.