R/labit.R

Defines functions labit

Documented in labit

labit <- function(x, y, bold=FALSE, sep=" ")
{
  if(bold)
    output <- bquote(paste(bold(.(x)), .(sep), italic(.(y))))
  else
    output <- bquote(paste(.(x), .(sep), italic(.(y))))
  output <- as.expression(output)

  return(output)
}

Try the hafroAssmt package in your browser

Any scripts or data that you put into this service are public.

hafroAssmt documentation built on May 2, 2019, 5:47 p.m.