简体   繁体   中英

rmarkdown - export table of contents

I have an RMarkdown file used for creating a QC report on other sets of data, and the report is relatively long. My table of contents essentially contains the name of all the checks I run on the data, and I'd like to have the table of contents itself exported into a new document, for outside users to quickly see what checks are run.

Is there any way to export just the TOC to word/pdf/html, or otherwise 'roll up' and export the different sections of an RMarkdown file?

I'm not entirely clear on what you're trying to achieve.

Perhaps you're after a "floating" TOC, like this?

---
title: "Title"
output:
  html_document:
    toc: true
    toc_float: true
---


# Section 1

```{r}
stringi::stri_rand_lipsum(4, start_lipsum = TRUE)
```

# Section 2

```{r}
stringi::stri_rand_lipsum(4, start_lipsum = TRUE)
```

在此处输入图片说明

For a html_document output format, you can set the body Pandoc variable to a void string:

---
title: "Title"
output: 
  html_document:
    toc: true
    pandoc_args: ['-V', 'body=""']
---

This solution will not work for a pdf_document or a word_document .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM