The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.

Making HTML Slides with the litedown Package

Yihui Xie

2024-11-06

1 Get started

Specify at least one CSS file (snap.css) and one JS script (snap.js) in YAML metadata:

---
output:
  litedown::html_format:
    meta:
      css: [default, snap]
      js: [snap]
---

You will learn more about snap.css and snap.js at the end of this presentation.


Equivalently, you can specify them in the arguments of litedown::mark():

litedown::mark("test.md", meta = list(
  css = c("default", "snap"),
  js = "snap"
))

but I recommend that you specify these options in YAML metadata instead.


2 Create slides

There are two ways to create a new slide:

  1. Insert a horizontal rule (---).
  2. Or use the level-two section heading (##).

You must choose only one way, i.e., either use horizontal rules to separate all slides, or avoid horizontal rules but only use section headings.

The first way is more flexible—you don’t have to start a slide with a section heading.


2.1 Example (---)

## First slide

**Content**.

---

More _content_ on the next page.

---

## Third slide

2.2 Example (##)

## First slide

Content.

## Second slide

Content.

## Third slide

3 Keyboard shortcuts



4 CSS and styling

You can pass more CSS files to the css option, e.g., if you have extra.css under the same directory as the Markdown input file:

---
output:
  litedown::html_format:
    meta:
      css: [default, snap, extra.css]
      js: [snap]
---

If your input document is .Rmd, you can also embed CSS directly in a css code chunk:

```{css}
#| echo=FALSE

/* your CSS rules */
```

Below is a CSS code chunk in which we defined the font families for this presentation:

body {
  font-family: Georgia, serif;
}
.slide h1, .slide h2 {
  font-family: Baskerville, Garamond, serif;
}
code {
  font-family: Consolas, "Andale Mono", monospace;
  font-weight: bold;
}

4.1 Example: section numbers

When the Markdown option number_sections is enabled, all sections are numbered. You can hide all numbers via CSS:

.section-number { display: none; }

For this presentation, only section numbers for level-two headings are displayed:

#TOC > ul > li > .section-number,
h2 > .section-number {
  display: inline-block;
}

4.2 Example: TOC

If you enable the table of contents (TOC) by setting the option toc: true, you will get a TOC slide after the title slide. It uses a two-column layout by default. You can custom its styles via the CSS selector #TOC. For example, you can use three columns:

#TOC { columns: 3; }

Or define the TOC title by:

#TOC::before { content: "Outline"; }

Or shorten TOC (hide lower-level headings):

#TOC li ul { display: none; }

For this presentation, we don’t hide lower-level headings in TOC but just make them more compact (display: inline;):

#TOC li ul li {
  display: inline;
  border-left: 0.2em dotted #ccc;
  padding-left: 0.2em;
}
#TOC li ul li a {
  color: #666;
  text-decoration: none;
}

4.3 Responsive layout

Media Width Mode Font size Overview columns
Super large devices ≥ 1800px 4
Larger desktops ≥ 1400px 3
Desktops ≥ 992px Slides 200% 2
Phones and tablets < 992px Article 100% N/A

You can resize your browser window to see the effect (also try to press o and test the overview mode). If you are on a mobile device, you should see a normal continuous page, since you cannot adjust the window size.


4.4 Printing


If you need to print each slide on a separate page, you may include the following CSS and may need to tweak the paper size and font size. The PDF will not have exactly the same appearance as HTML.

@page {
  size: a4 landscape;
  margin: 0;
}

@media print {
  .slide {
    font-size: 1.8em;
    page-break-after: always;
  }
}

5 Slide attributes

You can add more attributes to a slide via an HTML comment that starts with # (Cmd / Ctrl + Shift + C in RStudio’s visual Markdown editor), e.g.,

<!--# class="inverse" style="color: red;"
contenteditable -->

The syntax is just HTML. These attributes will be added to the slide container:

<div class="slide inverse" style="color: red;" contenteditable>
</div>

5.1 Built-in classes

You can define your own arbitrary class names (e.g., <!--# class="large" -->) and corresponding CSS rules (e.g., .large { font-size: 150%; }).


5.2 Example: an inverse slide

<!--# class="inverse" style="font-size: 130%;" -->

5.3 Example: center content

Everything is centered both vertically and horizontally.

<!--# class="middle center" -->

Of course, you don’t have to use both classes at the same time. Depending on how you want to center content, you can use one of these classes.


5.4 Example: fade a slide

<!--# class="fade" -->

This slide is not important. You do not need to read it carefully. You can even take a nap, since the speaker is boring.


5.5 Example: a background image

<!--#
style="background-image: url(path/to/image);"
-->

We use the style attribute to introduce a background image to this slide. You can learn more about the background-image property here.


5.6 Example: an editable slide

<!--# contenteditable -->

Believe it or not, this slide is editable because we have enabled the contenteditable attribute. If you find any mistake on your slide during your presentation, you can click on it and edit any text.

Note that your edits will not be saved, though.


6 Miscellaneous elements

6.1 Page numbers

They are placed in <span class="page-number"></span> at the bottom right of all slides.

If you click on a page number, the URL of the presentation will be appended by a hash of the form #N, where N is the page number. You can share this URL with other people when you want to point them to a specific page in the slides.


6.2 Timer

A timer is added to the bottom left in <span class="timer"></span> by default. If you want a countdown timer, you can add a custom <span> to your document (in Markdown, you can use a raw HTML block ```{=html}), and specify the total number of seconds in the attribute data-total, e.g.,

<span class="timer" data-total="1200"></span>

The timer will start when the presentation becomes fullscreen. To restart the timer, click on it.

For the countdown timer, when the time is up, the timer will start to blink.


7 Caveats

7.1 Lengthy slides

When the height of a slide exceeds the window height, you need to be careful because it can be easy to accidentally scroll to the next page as you approach the bottom of the slide. If you move from an oversized slide to the next slide by accident, you will not be able to move back to the bottom of the previous slide directly! Instead, you will always be navigated to the top of the previous slide if you want to go back. When you are on a long slide, I recommend that you use your mouse wheel or the Down arrow key to scroll at small steps, instead of using the PageDown key to scroll over to the next screen at once.

Because of this hassle, you may not really want to make a slide lengthy, but it may be unavoidable when you have lengthy content to show on one slide and it cannot be broken. Below is a toy example (the output block cannot be split onto two slides):

cat(1:10, sep = "\n")
1
2
3
4
5
6
7
8
9
10

7.2 Page mode

The page will switch between the slides and article mode depending on the ratio of the window height to width, \(R_w=H_w/W_w\).


7.3 Aspect ratio

The aspect ratio of slides is determined by your screen aspect ratio by default. The content will fit all available space on the screen when the slides are full-screen (press f). If you present the slides directly with your own computer, this may not be a problem since you know if all content fits well on your own screen. However, if you connect your computer to a projector or present the slides on another computer, you’d better know the screen resolution beforehand, because the aspect ratio may be different, and your slides can look different on that screen.

You can fix the aspect ratio by setting the CSS variable --slide-ratio, e.g.,

:root { --slide-ratio: .75; }

7.4 Zooming

For best results in the slide mode, set the browser zooming level to 100%. Zooming out (< 100%) is usually okay. Zooming in (> 100%) may lead to slides being cut off at the margin.


7.5 Cross-browser/device issues

Unlike PDF, HTML slides may not look exactly the same in different web browsers or on different devices. For example, text may be rendered via system fonts, and different systems may have different fonts. To ensure the same fonts are used on different devices, you may use web fonts (e.g., Google Fonts).

You may print the slides to PDF in advance. In case you have trouble with HTML slides when presenting from a different device, you may use the PDF copy (of course, you will lose features that rely on HTML/CSS/JS).


8 Technical notes

How does this HTML presentation work under the hood?

8.1 The original HTML

<h2>First slide</h2>
<p>Content</p>
<hr>
<h2>Second slide</h2>
<p>More content</p>
<hr>

This can be generated from Markdown.


8.2 snap.js

The script snap.js converts HTML to a structure more convenient to style as slides:

<div class="slide-container">
  <div class="slide">
    <h2>First slide</h2>
    <p>Content</p>
  </div>
  <div class="slide">
    <h2>Second slide</h2>
    <p>More content</p>
  </div>
</div>

8.3 snap.css

The core technique is CSS Scroll Snap. The full CSS is snap.css, and the essential rules are:

html {
  scroll-snap-type: y mandatory;
}
.slide {
  min-height: 100vh;
  scroll-snap-align: start;
}

The JS and CSS code can be used outside the R package litedown, too. You just need to have the correct HTML structure. Then in your HTML document:

<script src="https://cdn.jsdelivr.net/npm/@xiee/utils@VERSION/js/snap.min.js" defer></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/combine/npm/@xiee/utils@VERSION/css/default.min.css,npm/@xiee/utils@VERSION/css/snap.min.css">

Remember to substitute VERSION with an appropriate version (e.g., 1.11.0). You can omit @VERSION to use the latest version but it is not recommended because future updates might break your old slides.

Both the JS and CSS are quite lightweight (total size is 12.6 Kb when uncompressed) and have no dependencies. They were written from scratch.


9 Enjoy!

  1. See this post for a possible application of this odd feature.

These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.