R markdown pander覆盖自动LaTeX表格宽度(列包含markdown URL)

时间:2016-06-01 17:25:35

标签: r markdown r-markdown pander

我有一个包含markdown格式链接的列的表。当pander决定制作列的宽度时,它(可以理解)将URL的宽度考虑在内。有没有办法克服这种行为,所以我可以使这个列变小;链接的文本非常狭窄。

以下是使用编译结果的降价示例。我想使第二列占宽度的10%,如split.cells参数所指定。

---
title: ''
output: pdf_document
---

```{r}
library('pander')
testDF <- data.frame(Description='some rather long description that I would like to take up the majority of the column width',
                     link='[Y](http://www.thelongesturlintheworld-no-I-mean-really-really-long-leik-so-looooooooooooooooooooooooooooooooooooooooooong.cooooooooooooooom)')
pander::pander(testDF,
               split.cells = c('90%','10%'), 
               split.table = 500,
               justify = 'left')
```

Image of compiled PDF

我知道我可以深入研究生成的.tex文件并使用查找替换来更改宽度 - 我想知道我是否可以以更可重现的方式执行此操作。

0 个答案:

没有答案