Translate_to_LaTeX calls latexTranslate.
translate_to_LaTeX(x, ...)# S3 method for data.frame
translate_to_LaTeX(x, ...)
# S3 method for list
translate_to_LaTeX(x, ...)
# S3 method for character
translate_to_LaTeX(
x,
inn = NULL,
out = NULL,
pb = FALSE,
greek = FALSE,
na = "",
...
)
# S3 method for numeric
translate_to_LaTeX(x, ...)
# S3 method for factor
translate_to_LaTeX(x, ...)
# S3 method for logical
translate_to_LaTeX(x, ...)
Same length as x, now translated to latex.
An object.
As in latex.
translate_to_LaTeX(data.frame): Applies latexTranslate to
rownames(x), colnames(x) and all columns of x.
translate_to_LaTeX(list): Translates all elements of x.
translate_to_LaTeX(character): As latexTranslate.
translate_to_LaTeX(numeric): Casts to character and then translates.
translate_to_LaTeX(factor): Translates the levels of the factor.
translate_to_LaTeX(logical): Casts to character and then translates.
Result is suitable for print with latex.
Translate_to_LaTeX uses S3 object system. See seection methods.