3

我想打印一个stargazer()以等宽字体生成的乳胶表,并且我想以一种可重现的方式knitr(即没有手动乳胶编码)来完成它。我试图定义一个名为的环境,然后通过andmymono将 knitr 块包装在这个环境中。这没用; 表格以默认字体样式打印。\begin{}\end{}

\documentclass{article} 
\newenvironment{mymono}{\ttfamily}{\par}
\begin{document}   
<<lm, echo=FALSE>>=  
df <- data.frame(x=1:10, y=rnorm(10))
library(stargazer)  
lm1 <- lm(y ~ x ,data=df)  
@

% reproducible
\begin{mymono}
<<table_texstyle, echo=FALSE, results='asis', message=FALSE>>=  
stargazer(lm1, label="test")  
@  
\end{mymono}

\end{document}

我认为stargazer()除了font.size.

# > sessionInfo()
# R version 3.0.2 (2013-09-25)
# Platform: x86_64-apple-darwin10.8.0 (64-bit)
# other attached packages:
# [1] stargazer_5.1

table{}比用新的字体样式包装整个字体更好的是只换行以tabular{}使标题保持默认样式。我不知道是否有办法以stargazer()编程方式将乳胶代码插入输出。

4

1 回答 1

2

评论太长了,所以这是一个答案的开始。使用问题中的模型:

\documentclass{article} 
\begin{document}  

<<lm, echo=FALSE, message=FALSE, include=FALSE>>=
df <- data.frame(x=1:10, y=rnorm(10))
library(stargazer)  
lm1 <- lm(y ~ x ,data=df)  

tabular_tt <- function(orig.table) {
    library(stringr)
    tabular.start <- which(str_detect(orig.table, "begin\\{tabular\\}"))
    tabular.end <- which(str_detect(orig.table, "end\\{tabular\\}"))
    new.table <- c(orig.table[1:(tabular.start - 1)],
                   "\\texttt{",
                   orig.table[tabular.start:tabular.end],
                   "}",
                   orig.table[(tabular.end + 1):length(orig.table)])
    return(new.table)
}
@

<<print, results='asis', echo=FALSE>>=
cat(tabular_tt(capture.output(stargazer(lm1, label="test"))), sep="\n")
@

\end{document}

您可以根据需要轻松调整它。如果你遇到问题,我会确保你的目标 LaTeX 语法是正确的,只在 LaTeX 中玩一个小玩具桌,也许玩你编织时生成的 tex 文件。

您可能需要创建函数cat(new.table, sep = "\n")以将其正确输出到 knitr 文档中。

于 2014-10-08T21:31:30.833 回答