Appendix D — HTML document extensions

Some common options for HTML include:

D.0.1 Adding Tab sets

A tab set looks like the following:

## Example tab set {.tabset}

### Tab 1

> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque sed eleifend velit. Sed porta pulvinar lorem ut rutrum. Etiam quis cursus libero. Donec nibh nisl, auctor quis sem in, feugiat convallis odio. Ut at euismod ligula. Nullam vitae quam non lacus scelerisque tempus. Sed tincidunt massa non nunc tincidunt feugiat. In hac habitasse platea dictumst.

### Tab 2

```{r}
#| label: tab-plot
plot(iris$Sepal.Length, iris$Sepal.Width)
```

To add a tab set, you include {.tabset} after your heading

D.0.2 Floating table of contents

A floating table of contents can be added with the following lines in the YAML header:

---
title: "Your title"
author: "Your name"
output: 
  html_document:
    toc: true
    toc_float: true
---

D.1 Your turn

  1. Add tab sets to your document
  2. Add a floating table of contents