2

我有一个包含降价格式链接的列的表。当 pander 决定列的宽度时,它(可以理解)会考虑 URL 的宽度。有没有办法覆盖这种行为,所以我可以让这个专栏变小;链接的文本非常狭窄。

这是带有编译结果的降价示例。我想让第二列占据split.cells参数指定的宽度的 10%。

---
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')
```

已编译 PDF 的图像

我知道我可以深入研究生成的.tex文件并通过查找替换来更改宽度 - 我想知道我是否可以以更可重复的方式做到这一点。

4

0 回答 0