Tint Is Not Tufte
An implementation in R Markdown
JJ Allaire, Yihui Xie, Dirk Eddelbuettel
2019-09-30
Before We Get Started…
tint is straightforward mix of the (html and pdf parts of the) excellent tufte package by JJ and Yihui, mixed with the Roboto Condensed font use and color scheme proposed by envisioned css plus minor style changes such as removal of italics—but otherwise true to the wonderful tufte package for R—all baked together into a small package providing another template.
We support italic aka em and strong annotations for text, as well as code snippets.
The package name is a standard package naming recursion: tint is not tufte.
The remainder of the tufte skeleton document follows as is, with only marginal changes to refer to this package for code.
Introduction
The Tufte handout style is a style that Edward Tufte uses in his books and handouts. Tufte’s style is known for its extensive use of sidenotes, tight integration of graphics with text, and well-set typography. This style has been implemented in LaTeX and HTML/CSS, respectively. We have ported both implementations into the tufte package. If you want LaTeX/PDF output, you may use the tufte_handout format for handouts, and tufte_book for books. For HTML output, use tufte_html. These formats can be either specified in the YAML metadata at the beginning of an R Markdown document (see an example below), or passed to the rmarkdown::render() function. See Allaire et al. (2019) for more information about rmarkdown.
---
title: "An Example Using the Tufte Style"
author: "John Smith"
output:
tufte::tufte_handout: default
tufte::tufte_html: default
---
There are two goals of this package:
- To produce both PDF and HTML output with similar styles from the same R Markdown document;
- To provide simple syntax to write elements of the Tufte style such as side notes and margin figures, e.g. when you want a margin figure, all you need to do is the chunk option
fig.margin = TRUE, and we will take care of the deails for you, so you never need to think about \begin{marginfigure} \end{marginfigure} or <span class="marginfigure"> </span>; the LaTeX and HTML code under the hood may be complicated, but you never need to learn or write such code.
If you have any feature requests or find bugs in tufte, please do not hesitate to file them to https://github.com/rstudio/tufte/issues. For general questions, you may ask them on StackOverflow: http://stackoverflow.com/tags/rmarkdown.
Headings
This style provides first and second-level headings (that is, # and ##), demonstrated in the next section. You may get unexpected output if you try to use ### and smaller headings.
In his later books, Tufte starts each section with a bit of vertical space, a non-indented paragraph, and sets the first few words of the sentence in small caps. To accomplish this using this style, call the newthought() function in tufte in an inline R expression `r ` as demonstrated at the beginning of this paragraph.
References
References can be displayed as margin notes for HTML output. For example, we can cite R here (R Core Team 2019). To enable this feature, you must set link-citations: yes in the YAML metadata, and the version of pandoc-citeproc should be at least 0.7.2. You can always install your own version of Pandoc from http://pandoc.org/installing.html if the version is not sufficient. To check the version of pandoc-citeproc in your system, you may run this in R:
system2('pandoc-citeproc', '--version')
If your version of pandoc-citeproc is too low, or you did not set link-citations: yes in YAML, references in the HTML output will be placed at the end of the output document.
Tables
You can use the kable() function from the knitr package to format tables that integrate well with the rest of the Tufte handout style. The table captions are placed in the margin like figures in the HTML output.
knitr::kable(
mtcars[1:6, 1:6], caption = 'A subset of mtcars.'
)
A subset of mtcars.
| Mazda RX4 |
21.0 |
6 |
160 |
110 |
3.90 |
2.620 |
| Mazda RX4 Wag |
21.0 |
6 |
160 |
110 |
3.90 |
2.875 |
| Datsun 710 |
22.8 |
4 |
108 |
93 |
3.85 |
2.320 |
| Hornet 4 Drive |
21.4 |
6 |
258 |
110 |
3.08 |
3.215 |
| Hornet Sportabout |
18.7 |
8 |
360 |
175 |
3.15 |
3.440 |
| Valiant |
18.1 |
6 |
225 |
105 |
2.76 |
3.460 |
Block Quotes
We know from the Markdown syntax that paragraphs that start with > are converted to block quotes. If you want to add a right-aligned footer for the quote, you may use the function quote_footer() from tufte in an inline R expression. Here is an example:
“If it weren’t for my lawyer, I’d still be in prison. It went a lot faster with two people digging.”
Without using quote_footer(), it looks like this (the second line is just a normal paragraph):
“Great people talk about ideas, average people talk about things, and small people talk about wine.”
— Fran Lebowitz
Responsiveness
The HTML page is responsive in the sense that when the page width is smaller than 760px, sidenotes and margin notes will be hidden by default. For sidenotes, you can click their numbers (the superscripts) to toggle their visibility. For margin notes, you may click the circled plus signs to toggle visibility.
More Examples
The rest of this document consists of a few test cases to make sure everything still works well in slightly more complicated scenarios. First we generate two plots in one figure environment with the chunk option fig.show = 'hold':
p <- ggplot(mtcars2, aes(hp, mpg, color = am)) +
geom_point()
p
p + geom_smooth()
## `geom_smooth()` using method = 'loess' and formula 'y ~ x'
Then two plots in separate figure environments (the code is identical to the previous code chunk, but the chunk option is the default fig.show = 'asis' now):
p <- ggplot(mtcars2, aes(hp, mpg, color = am)) +
geom_point()
p
p + geom_smooth()
## `geom_smooth()` using method = 'loess' and formula 'y ~ x'
You may have noticed that the two figures have different captions, and that is because we used a character vector of length 2 for the chunk option fig.cap (something like fig.cap = c('first plot', 'second plot')).
Next we show multiple plots in margin figures. Similarly, two plots in the same figure environment in the margin:

Two plots in one figure environment in the margin.
p
p + geom_smooth(method = 'lm')
Then two plots from the same code chunk placed in different figure environments:
knitr::kable(head(iris, 15))
| 5.1 |
3.5 |
1.4 |
0.2 |
setosa |
| 4.9 |
3.0 |
1.4 |
0.2 |
setosa |
| 4.7 |
3.2 |
1.3 |
0.2 |
setosa |
| 4.6 |
3.1 |
1.5 |
0.2 |
setosa |
| 5.0 |
3.6 |
1.4 |
0.2 |
setosa |
| 5.4 |
3.9 |
1.7 |
0.4 |
setosa |
| 4.6 |
3.4 |
1.4 |
0.3 |
setosa |
| 5.0 |
3.4 |
1.5 |
0.2 |
setosa |
| 4.4 |
2.9 |
1.4 |
0.2 |
setosa |
| 4.9 |
3.1 |
1.5 |
0.1 |
setosa |
| 5.4 |
3.7 |
1.5 |
0.2 |
setosa |
| 4.8 |
3.4 |
1.6 |
0.2 |
setosa |
| 4.8 |
3.0 |
1.4 |
0.1 |
setosa |
| 4.3 |
3.0 |
1.1 |
0.1 |
setosa |
| 5.8 |
4.0 |
1.2 |
0.2 |
setosa |
Two plots in separate figure environments in the margin (the first plot).
p
knitr::kable(head(iris, 12))
| 5.1 |
3.5 |
1.4 |
0.2 |
setosa |
| 4.9 |
3.0 |
1.4 |
0.2 |
setosa |
| 4.7 |
3.2 |
1.3 |
0.2 |
setosa |
| 4.6 |
3.1 |
1.5 |
0.2 |
setosa |
| 5.0 |
3.6 |
1.4 |
0.2 |
setosa |
| 5.4 |
3.9 |
1.7 |
0.4 |
setosa |
| 4.6 |
3.4 |
1.4 |
0.3 |
setosa |
| 5.0 |
3.4 |
1.5 |
0.2 |
setosa |
| 4.4 |
2.9 |
1.4 |
0.2 |
setosa |
| 4.9 |
3.1 |
1.5 |
0.1 |
setosa |
| 5.4 |
3.7 |
1.5 |
0.2 |
setosa |
| 4.8 |
3.4 |
1.6 |
0.2 |
setosa |
Two plots in separate figure environments in the margin (the second plot).
p + geom_smooth(method = 'lm')
knitr::kable(head(iris, 5))
| 5.1 |
3.5 |
1.4 |
0.2 |
setosa |
| 4.9 |
3.0 |
1.4 |
0.2 |
setosa |
| 4.7 |
3.2 |
1.3 |
0.2 |
setosa |
| 4.6 |
3.1 |
1.5 |
0.2 |
setosa |
| 5.0 |
3.6 |
1.4 |
0.2 |
setosa |
We blended some tables in the above code chunk only as placeholders to make sure there is enough vertical space among the margin figures, otherwise they will be stacked tightly together. For a practical document, you should not insert too many margin figures consecutively and make the margin crowded.
You do not have to assign captions to figures. We show three figures with no captions below in the margin, in the main column, and in full width, respectively.
# a boxplot of weight vs transmission; this figure
# will be placed in the margin
ggplot(mtcars2, aes(am, wt)) + geom_boxplot() +
coord_flip()
# a figure in the main column
p <- ggplot(mtcars, aes(wt, hp)) + geom_point()
p

# a fullwidth figure
p + geom_smooth(method = 'lm') + facet_grid(~ gear)
Some Notes on Tufte CSS
There are a few other things in Tufte CSS that we have not mentioned so far. If you prefer sans-serif fonts, use the function sans_serif() in tufte. For epigraphs, you may use a pair of underscores to make the paragraph italic in a block quote, e.g.
I can win an argument on any topic, against any opponent. People know this, and steer clear of me at parties. Often, as a sign of their great respect, they don’t even invite me.
We hope you will enjoy the simplicity of R Markdown and this R package, and we sincerely thank the authors of the Tufte-CSS and Tufte-LaTeX projects for developing the beautiful CSS and LaTeX classes. Our tufte package would not have been possible without their heavy lifting.
To see the R Markdown source of this example document, you may follow this link to Github, use the wizard in RStudio IDE (File -> New File -> R Markdown -> From Template), or open the Rmd file in the package:
file.edit(
tint:::template_resources(
'tint', '..', 'skeleton', 'skeleton.Rmd'
)
)