Using Tex, the possible outputs options in doc are c("expression", "text", "ast"). From what I observed, "expression" and "text" return the same result.
While looking at the function .parseTeX, the possible returns are triggered with the following code :
Does this mean that the TeX return options are c("expression", "character", "ast") and not c("expression", "text", "ast") ?
I expect so, because when using TeX(sprintf("$V_l = %.4f$", vl), output = c('expression')) I get a string.
Is it possible to change the documentation and the code ?
Using Tex, the possible outputs options in doc are
c("expression", "text", "ast")
. From what I observed, "expression" and "text" return the same result.While looking at the function
.parseTeX
, the possible returns are triggered with the following code :Does this mean that the
TeX
return options arec("expression", "character", "ast")
and notc("expression", "text", "ast")
? I expect so, because when usingTeX(sprintf("$V_l = %.4f$", vl), output = c('expression'))
I get a string.Is it possible to change the documentation and the code ?