Process numeric LaTeX or HTML values.
latexNumeric.Rd
This takes formatted strings as produced by format
from numeric
values, and modifies them to LaTeX or HTML code that retains the spacing, and renders
minus signs properly. The default formatting in tabular
uses this to maintain proper alignment.
Usage
latexNumeric(chars, minus = TRUE, leftpad = TRUE, rightpad = TRUE, mathmode = TRUE)
htmlNumeric(chars, minus = TRUE, leftpad = TRUE, rightpad = TRUE)
Arguments
- chars
A character vector of numeric values.
- minus
Whether to pad cases with no minus sign with spacing of the same width.
- leftpad,rightpad
Whether to pad cases that have leading or trailing blanks with spacing matching a digit width per space.
- mathmode
Whether to wrap the result in dollar signs, so LaTeX renders minus signs properly.