tex: Export object to TeX

View source: R/output.R

texR Documentation

Export object to TeX

Description

Export object to TeX

Usage

tex(x, zero_as_dot = FALSE, matstr = NULL, ...)

Arguments

x

A caracas_symbol

zero_as_dot

Print zero as dots

matstr

Replace ⁠\begin{matrix}⁠ with another environment, e.g. pmatrix. If vector of length two, the second element is an optional argument.

...

Other arguments passed along

Examples

if (has_sympy()) {
S <- matrix_sym_symmetric(3, "s")
S[1, 2] <- "1-x"
S
tex(S)
tex(S, matstr = "pmatrix")
tex(S, matstr = c("pmatrix", "r"))
}


caracas documentation built on Oct. 17, 2023, 5:08 p.m.