每个页面上的列名称,其中包含Sweave中的xtable

时间:2012-01-01 00:30:04

标签: r latex sweave xtable

我希望在xtable的每个页面上都有列名。

\documentclass{article}
\usepackage{graphicx}   
\usepackage{longtable}

\begin{document}

<<>>=
x <- matrix(rnorm(1000), ncol = 10)
x.big <- xtable(x,label='tabbig',caption='Example of longtable spanning several pages')
@

<<label = tabSEM.S, echo = FALSE, results = tex >>=
print(x.big,tabular.environment='longtable',floating=FALSE)
@

\end{document}

任何帮助都将受到高度赞赏。感谢

1 个答案:

答案 0 :(得分:17)

我认为这确实是一个LaTeX问题,我只是用Google搜索并最终得到tex.stackexchange.com here的一个简单答案。

试试这个(在LaTeX中未经测试;如果按照你想要的方式进行编译,会很好奇):

print(x.big,tabular.environment='longtable',
        floating=FALSE,
        hline.after = c(-1,nrow(x.big)),
        add.to.row = list(pos = list(0),command = "\\hline \\endhead "))