作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 R 中的 Sweave 生成自动报告。我想:
这是我的代码:
\documentclass[a4paper,18pt]{article}
\usepackage[top=2.5cm, left=2.5cm, right=2.5cm,bottom=2.5cm]{geometry}
\usepackage{Sweave}
\usepackage{booktabs}
\makeatletter
\def\hrulefill#1{\leavevmode\leaders\hrule\@height#1\hfill \kern\z@}
\makeatother
\begin{document}
\SweaveOpts{concordance=TRUE}
<<xtable1, results=tex,echo=FALSE>>=
library(xtable)
> data
l w a m
x NA 515.0 0.22 127.83
y NA 75.0 0.45 33.75
z NA 85.0 0.45 38.25
xtab <- xtable(data)
hline <- c(-1,0,nrow(xtab)-1,nrow(xtab))
align(xtab) <- "lcccc"
print(xtab,booktabs=T,hline.after=hline)
@
\end{document}
最佳答案
来自documentation ,将 add.to.row
与 hline.after=NULL
结合使用,以控制从 hline
向量添加到行的内容。
library(xtable)
xtab <- xtable(data)
hline <- c(-1,0,nrow(xtab)-1,nrow(xtab))
htype <- c("\\toprule ", "\\midrule ", "\\toprule ","\\bottomrule ")
print(xtab,add.to.row = list(pos = as.list(hline),
command = htype),
hline.after = NULL)
数据
data <- structure(list(l = c(NA, NA, NA), w = c(515, 75, 85), a = c(0.22,
0.45, 0.45), m = c(127.83, 33.75, 38.25)), class = "data.frame", row.names = c("x", "y", "z"))
关于r - Sweave 中的 xtable : specify toprule or midrule in a table + alignement,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42872403/
关闭。这个问题是off-topic .它目前不接受答案。 想改善这个问题吗? Update the question所以它是 on-topic对于堆栈溢出。 8年前关闭。 Improve this q
我正在使用 Python Pandas。 我正在尝试从 Excel 工作簿自动创建 LaTeX 表格。到目前为止,我已经完成了创建以下数据框的脚本: Date F
我正在使用 R 中的 Sweave 生成自动报告。我想: 在位置 (nrow -1) 我想要一个 toprule 而不是 midrule 将第一行居中对齐,然后我想将数字右对齐以便对齐数字。 这是
我是一名优秀的程序员,十分优秀!