Test viewer for tex tables
Creates a small latex template file that includes a table
file. Compiles it, then displays in viewer if system has
xdg-open
settings.
testtable(tablefile, dir, tmpfn = "tmp.tex")
tablefile |
The base name of the table file |
dir |
Directory where table is saved, same will be used for build. |
tmpfn |
File name to be used by example document |
LaTeX log, returned from shell function.
Paul Johnson <pauljohn@ku.edu>
require(lavaan) tempdir <- tempdir() HS.model <- ' visual =~ x1 + x2 + x3 textual =~ x4 + x5 + x6 speed =~ x7 + x8 + x9' fit1 <- cfa(HS.model, data = HolzingerSwineford1939, std.lv = TRUE, meanstructure = TRUE) fit1.t <- semTable(fit1, fits = c("chisq", "rmsea"), columns = c("estsestars", "rsquare"), columnLabels = c("estsestars" = "Est(SE)"), file = file.path(tempdir, "fit1.t")) if (interactive()) testtable("fit1.t", tempdir)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.