您可以使用capture.output()
来捕获由(隐式)调用打印的行print.xtable()
。然后应用gsub()
到输出,使用围绕每个负数的模式和替换\textcolor{red}{}
。最后,使用cat()
withsep="\n"
将修改后的行写入*.tex
文件。
\documentclass{article}
\begin{document}
<<simpleExamp, results="asis", echo=FALSE>>=
library(knitr)
library(xtable)
testMatrix <- matrix(c(sample(-10:10,10)), ncol = 2)
## I added the following three lines
xt <- capture.output(xtable(testMatrix))
xt_mod <- gsub("(\\s|^)(-\\d*)", "\\1\\\\textcolor{red}{\\2}", xt)
cat(xt_mod, sep="\n")
@
\end{document}
(另请注意,我替换为results=tex
knitr '更喜欢'并且它将更快地处理。)results="asis"
编辑:添加结果表的图像。(以 SO 就绪的形式获取它需要对代码进行一些调整,这也包括在下面。)
\documentclass{standalone}
\renewenvironment{table}{}{}% Ignore `table` environment in standalone mode.
\begin{document}
<<simpleExamp, results="asis", echo=FALSE>>=
library(knitr)
library(xtable)
cat("\\Huge\n\n")
testMatrix <- matrix(c(sample(-10:10,10)), ncol = 2)
## I added the following three lines
xt <- capture.output(print.xtable(xtable(testMatrix), table.placement=NULL))
xt_mod <- gsub("(\\s|^)(-\\d*)", "\\1\\\\textcolor{red}{\\2}", xt)
cat(xt_mod, sep="\n")
@
\end{document}