在xtable中向add.to.row参数添加两个命令

时间:2015-11-03 23:49:07

标签: r latex r-markdown xtable

我已经使用下面的两个答案为xtable中的交替行添加颜色或者为长表添加页脚,但我需要弄清楚如何做到这两个。

(1)How to only show table caption once in "list of table" for a table split onto multiple pages

(2) R, knitr, xtable, alternating row colors

有没有办法同时使用两者?

1 个答案:

答案 0 :(得分:1)

根据您列出的答案,您似乎使用了LaTeX作为输出。您可以通过为每个命令分配位置来组合两个或更多add.to.row命令。命令必须是模式character的向量,并且位置必须在列表中。在下文中,我创建了一个列表addtorow <- list(),然后将位置addtorow$pos <- as.list(c(rowIndexForFirstCommands, rowIndexForSecondCommands))及其相应的命令分配给addtorow$command <- as.vector(c(firstCommands, secondCommands),mode="character")。这是一个最小的工作示例:

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage{longtable}
\usepackage[table]{xcolor}
\begin{document}

<<yoman,echo=FALSE,results='asis'>>=
library(xtable)
#define a data frame
mydf <- data.frame(id = make.unique(rep(letters, length.out = 100), sep=''), 
                   var1 = rnorm(100), 
                   var2 = runif(100),
                   var3=rexp(100),
                   var4=rpois(100,1.4))

#define row indexes to be highlighted (each two), 
#and repeat rowcolor command correspondingly
rws <- seq(1, (nrow(mydf)), by = 2)
col <- rep("\\rowcolor[gray]{0.95}", length(rws))

#create a list that will receive the instructions 
#for add.to.row and add the two instructions
addtorow <- list()

#assign a position argument to addtorow
#rws are the row indexes for the row to be colored, 
#0 is the row index for longtable argument
addtorow$pos <- as.list(c(
                         rws, #positions for first commands(highlighting rows)
                         0    #position for second command (longtable argument)
                         ))

#assign corresponding commands to addtorow
addtorow$command <- as.vector(c( col, #first command (highlighting rows)
                                 paste("\\hline \n",
                                       "\\endhead \n",
                                       "\\hline \n",
                                       "{\\footnotesize Continued on next page} \n",
                                       "\\endfoot \n",
                                       "\\endlastfoot \n",
                                       sep="")), #second command (longtable)
                              mode="character")
print(xtable(mydf,
             caption = "My caption "),
             tabular.environment = "longtable",
             floating = FALSE,
             include.colnames = TRUE,
             include.rownames = TRUE, 
             add.to.row = addtorow,    
             hline.after=c(-1),        # addtorow substitute default hline for first row
             caption.placement="top")

@

\end{document}
相关问题