作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我问了question不久前关于如何将长表格单元格内容包装在 RMarkdown 文档中。一个很好的答案指向 pander()
包。
我再次面临类似的问题,只是我在 Rnw
中工作文件,我的理解是 pander()
不适用于 LaTeX。所以我又回来尝试找出如何将长行换行 kable()
.
\documentclass{article}
\begin{document}
This is my test
<<test, echo=FALSE>>=
library(knitr)
test <- data.frame(v1=c("This is a long string. This is a long string. This is a long string. This is a long string. This is a long string.",
"This is a another long string. This is a another long string. This is a another long string. This is a another long string. This is a another long string."),
v2=c(1, 2))
kable(test)
@
\end{document}
最佳答案
如果您使用 Latex 编译 pdf,我推荐使用 xtable
包,您可以复制表格环境中的几乎所有内容。对齐选项为您提供所需的内容:l - 左对齐、c - 居中、r - 右对齐或列的大小。我添加了其他选项供您尝试。在 block 选项中,您必须添加 results = 'asis'。
library(xtable)
print(xtable(test, caption="A caption", align="lp{2cm}p{2cm}"),
comment=F, include.rownames=F, table.placement="ht",
size=getOption("xtable.size", "tiny"))
关于r - 将长行换行到 kable() 中以便在 Rnw/LaTeX 中使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33264233/
在 Vaadin 7.0,显示时JavaBean Table 中的数据与 BeanContainer ,用新数据刷新表的正确方法是什么? 最佳答案 该表通过监听器监视表项的属性。如果您通过表的 Ite
首先,我使用的是带有 Axis2 1.6.2 的 eclipse,我正在 tomcat 6 上部署我创建的 Web 服务。Web 服务是在 eclipse 中通过自上而下的方法创建的。 我被要求使对我
我已将 Rails 3.1.1 应用程序升级到 Rails 3.1.3,现在,对于每个请求,它仅响应错误数量的参数(3 for 1)。不幸的是,它没有说明错误在哪里,并且应用程序跟踪为空。我认为存在一
我是一名优秀的程序员,十分优秀!