2

我正在寻找在 PDF 文档中使用rmarkdown,knitrpander. 我能够创建一个简单的项目符号列表,但现在需要该列表中的另一个级别。在下表中,我要求“好评如潮”项目符号是“提供研讨会...”项目符号的子项目符号。

多子弹

我遇到的问题与列中mytable数据框中的以下代码行有关Description。尽管我尝试使用\x20[1] 创建子项目符号所需的 4 个空格,但这些空格不会出现 - 因此没有子项目符号(尽管没有显示错误)。我还尝试了最明显的方法,即在代码中简单地添加 4 个空格,但无济于事。还尝试将我的R选项设置为 include strip.white = FALSE,但这也没有被证明有帮助(见下文)。

---
title: "xxx"
author: "xxx"
output:
  pdf_document:
    fig_height: 4
    fig_width: 10
    highlight: tango
  word_document: default
geometry: margin=3cm
---

```{r global_options, include=FALSE, echo=FALSE}
require(knitr)
opts_chunk$set(fig.width=8, fig.height=4, fig.path='figs/', dpi=500,
               echo=FALSE, warning=FALSE, message=FALSE, results='hide', strip.white = FALSE)
```

```{r pandoc_options, include=FALSE, echo=FALSE}
require(pander)
panderOptions('digits', 3)
panderOptions('round', 3)
panderOptions('keep.trailing.zeros', TRUE)
panderOptions('keep.line.breaks', TRUE)
```

```{r concepts, echo=FALSE}
mytable = data.frame(
    Concept     = c("Decoded", "XXX"),
    Description = c("* Founded in 2011\ \n* Offers workshops to take people from zero skills and knowledge in programming through to coding a multi-platform app using HTML, CSS and Javascript in a single day\ \n\x20\x20\x20\x20+ Rave reviews", "XXX"),
    Website     = c("http://decoded.com/uk/","XXX"))
```

``` {r concepts_descriptions, results = 'asis'}
pander::pander(mytable, keep.line.breaks = TRUE, style = 'grid', justify = 'left')
```

参考

[1]在尝试、、、等无济于事后,我从这里\x20得到了提示(建议在这里)。\\s\s\ \s\\\s

4

2 回答 2

2

您可以将项目嵌套在项目符号内:

```{r concepts, echo=FALSE}
mytable = data.frame(
    Concept     = c("Decoded", "XXX"),
    Description = c("* Founded in 2011\ \n
    * Offers workshops to take people from zero skills and knowledge in programming through to coding a multi-platform app using HTML, CSS and Javascript in a single day\ \n
    \\begin{itemize}
      \\item Rave reviews \n
      \\item e.t.c
    \\end{itemize}", "XXX"),
    Website     = c("http://decoded.com/uk/","XXX"))
```
于 2015-06-25T12:31:25.973 回答
2

编辑:我没有意识到您使用的是 pdf,但这是一个 html 解决方案

  1. 我会使用矩阵
  2. 我会使用 htmlTable 包,它允许比 kable 或 pander 更高级的表格

首先为您的列表制作一个包装器

make_list <- function(...) {
  paste0("<ul>", sprintf('<li>%s</li>', substitute(...())), '</ul>', collapse = '')
}

make_list(one, two, three)

# [1] "<ul><li>one</li></ul><ul><li>two</li></ul><ul><li>three</li></ul>"


library('htmlTable')
mytable <- matrix(c("Decoded", "XXX",
                    make_list('Founded in 2011', 'Offers workshops to take people from zero skills and knowledge in programming through to coding a multi-platform app using HTML, CSS and Javascript in a single day','Rave reviews'),
                    "XXX",
                    "http://decoded.com/uk/","XXX"), 2,
                  dimnames = list(NULL, c('Concept','Description','Website')))

htmlTable(mytable, align = 'lll')

在此处输入图像描述

这很好,但垂直对齐不好,而且盒子太宽了。但是我们可以用 .css 的一个 css 参数来修复htmlTable。垂直对齐将文本推到顶部而不是中心,最大宽度设置文本换行,自动宽度让每个都有自己的宽度

htmlTable(mytable, align = 'lll', align.header = 'lll',
          css.cell = "width: auto; max-width: 250px; vertical-align: top;")

在此处输入图像描述

于 2015-06-25T12:31:50.260 回答