2017-02-20 20:52:00 +01:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html$if(lang)$ lang="$lang$"$endif$$if(dir)$ dir="$dir$"$endif$>
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<meta name="generator" content="pandoc">
|
|
|
|
|
$for(author-meta)$
|
|
|
|
|
<meta name="author" content="$author-meta$">
|
|
|
|
|
$endfor$
|
|
|
|
|
$if(date-meta)$
|
|
|
|
|
<meta name="dcterms.date" content="$date-meta$">
|
|
|
|
|
$endif$
|
|
|
|
|
$if(keywords)$
|
|
|
|
|
<meta name="keywords" content="$for(keywords)$$keywords$$sep$, $endfor$">
|
|
|
|
|
$endif$
|
|
|
|
|
<title>$if(title-prefix)$$title-prefix$ – $endif$$pagetitle$</title>
|
|
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
|
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
|
2020-05-21 23:30:12 +02:00
|
|
|
|
<link rel="stylesheet" href="$revealjs-url$/dist/reset.css">
|
|
|
|
|
<link rel="stylesheet" href="$revealjs-url$/dist/reveal.css">
|
2018-12-14 20:29:35 +01:00
|
|
|
|
<style>
|
2021-10-21 17:57:00 +02:00
|
|
|
|
.reveal .sourceCode { /* see #7635 */
|
|
|
|
|
overflow: visible;
|
|
|
|
|
}
|
2019-09-05 02:33:59 +02:00
|
|
|
|
$styles.html()$
|
2017-02-20 20:52:00 +01:00
|
|
|
|
</style>
|
|
|
|
|
$if(theme)$
|
2020-05-21 23:30:12 +02:00
|
|
|
|
<link rel="stylesheet" href="$revealjs-url$/dist/theme/$theme$.css" id="theme">
|
2017-02-20 20:52:00 +01:00
|
|
|
|
$else$
|
2020-05-21 23:30:12 +02:00
|
|
|
|
<link rel="stylesheet" href="$revealjs-url$/dist/theme/black.css" id="theme">
|
2017-02-20 20:52:00 +01:00
|
|
|
|
$endif$
|
|
|
|
|
$for(css)$
|
|
|
|
|
<link rel="stylesheet" href="$css$"/>
|
|
|
|
|
$endfor$
|
|
|
|
|
$if(math)$
|
|
|
|
|
$math$
|
|
|
|
|
$endif$
|
|
|
|
|
$for(header-includes)$
|
|
|
|
|
$header-includes$
|
|
|
|
|
$endfor$
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
$for(include-before)$
|
|
|
|
|
$include-before$
|
|
|
|
|
$endfor$
|
|
|
|
|
<div class="reveal">
|
|
|
|
|
<div class="slides">
|
|
|
|
|
|
|
|
|
|
$if(title)$
|
2019-12-11 17:26:54 +01:00
|
|
|
|
<section id="$idprefix$title-slide"$for(title-slide-attributes/pairs)$ $it.key$="$it.value$"$endfor$>
|
2017-02-20 20:52:00 +01:00
|
|
|
|
<h1 class="title">$title$</h1>
|
|
|
|
|
$if(subtitle)$
|
|
|
|
|
<p class="subtitle">$subtitle$</p>
|
|
|
|
|
$endif$
|
|
|
|
|
$for(author)$
|
|
|
|
|
<p class="author">$author$</p>
|
|
|
|
|
$endfor$
|
2021-05-15 18:56:48 +02:00
|
|
|
|
$for(institute)$
|
|
|
|
|
<p class="institute">$institute$</p>
|
|
|
|
|
$endfor$
|
2017-02-20 20:52:00 +01:00
|
|
|
|
$if(date)$
|
|
|
|
|
<p class="date">$date$</p>
|
|
|
|
|
$endif$
|
|
|
|
|
</section>
|
|
|
|
|
$endif$
|
|
|
|
|
$if(toc)$
|
|
|
|
|
<section id="$idprefix$TOC">
|
2021-04-30 03:49:17 +02:00
|
|
|
|
<nav role="doc-toc">
|
|
|
|
|
$if(toc-title)$
|
|
|
|
|
<h2 id="$idprefix$toc-title">$toc-title$</h2>
|
|
|
|
|
$endif$
|
2017-06-26 16:07:59 +02:00
|
|
|
|
$table-of-contents$
|
2021-04-30 03:49:17 +02:00
|
|
|
|
</nav>
|
2017-02-20 20:52:00 +01:00
|
|
|
|
</section>
|
|
|
|
|
$endif$
|
|
|
|
|
|
|
|
|
|
$body$
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2020-05-21 23:30:12 +02:00
|
|
|
|
<script src="$revealjs-url$/dist/reveal.js"></script>
|
|
|
|
|
|
2021-03-16 17:20:54 +01:00
|
|
|
|
<!-- reveal.js plugins -->
|
2020-05-21 23:30:12 +02:00
|
|
|
|
<script src="$revealjs-url$/plugin/notes/notes.js"></script>
|
|
|
|
|
<script src="$revealjs-url$/plugin/search/search.js"></script>
|
|
|
|
|
<script src="$revealjs-url$/plugin/zoom/zoom.js"></script>
|
|
|
|
|
$if(mathjax)$
|
|
|
|
|
<script src="$revealjs-url$/plugin/math/math.js"></script>
|
|
|
|
|
$endif$
|
2017-02-20 20:52:00 +01:00
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
|
|
// Full list of configuration options available at:
|
2020-05-21 23:30:12 +02:00
|
|
|
|
// https://revealjs.com/config/
|
2017-02-20 20:52:00 +01:00
|
|
|
|
Reveal.initialize({
|
|
|
|
|
// Display controls in the bottom right corner
|
|
|
|
|
controls: $controls$,
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2020-05-07 19:03:41 +02:00
|
|
|
|
// Help the user learn the controls by providing hints, for example by
|
|
|
|
|
// bouncing the down arrow when they first encounter a vertical slide
|
|
|
|
|
controlsTutorial: $controlsTutorial$,
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2020-05-07 19:03:41 +02:00
|
|
|
|
// Determines where controls appear, "edges" or "bottom-right"
|
2020-11-19 20:56:05 +01:00
|
|
|
|
controlsLayout: '$controlsLayout$',
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2020-05-07 19:03:41 +02:00
|
|
|
|
// Visibility rule for backwards navigation arrows; "faded", "hidden"
|
|
|
|
|
// or "visible"
|
2020-11-19 20:56:05 +01:00
|
|
|
|
controlsBackArrows: '$controlsBackArrows$',
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2017-02-20 20:52:00 +01:00
|
|
|
|
// Display a presentation progress bar
|
|
|
|
|
progress: $progress$,
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2017-02-20 20:52:00 +01:00
|
|
|
|
// Display the page number of the current slide
|
|
|
|
|
slideNumber: $slideNumber$,
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2020-11-19 20:56:05 +01:00
|
|
|
|
// 'all', 'print', or 'speaker'
|
|
|
|
|
showSlideNumber: '$showSlideNumber$',
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2020-05-07 19:03:41 +02:00
|
|
|
|
// Add the current slide number to the URL hash so that reloading the
|
|
|
|
|
// page/copying the URL will return you to the same slide
|
2021-06-22 01:40:52 +02:00
|
|
|
|
hash: $hash$,
|
|
|
|
|
|
2020-11-19 20:56:05 +01:00
|
|
|
|
// Start with 1 for the hash rather than 0
|
|
|
|
|
hashOneBasedIndex: $hashOneBasedIndex$,
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
|
|
|
|
// Flags if we should monitor the hash and change slides accordingly
|
|
|
|
|
respondToHashChanges: $respondToHashChanges$,
|
|
|
|
|
|
2020-11-19 20:56:05 +01:00
|
|
|
|
// Push each slide change to the browser history
|
2021-05-21 02:17:15 +02:00
|
|
|
|
history: $history$,
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2017-02-20 20:52:00 +01:00
|
|
|
|
// Enable keyboard shortcuts for navigation
|
|
|
|
|
keyboard: $keyboard$,
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2017-02-20 20:52:00 +01:00
|
|
|
|
// Enable the slide overview mode
|
|
|
|
|
overview: $overview$,
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
|
|
|
|
// Disables the default reveal.js slide layout (scaling and centering)
|
|
|
|
|
// so that you can use custom CSS layout
|
2021-11-05 12:39:10 +01:00
|
|
|
|
disableLayout: $disableLayout$,
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2017-02-20 20:52:00 +01:00
|
|
|
|
// Vertical centering of slides
|
|
|
|
|
center: $center$,
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2017-02-20 20:52:00 +01:00
|
|
|
|
// Enables touch navigation on devices with touch input
|
|
|
|
|
touch: $touch$,
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2017-02-20 20:52:00 +01:00
|
|
|
|
// Loop the presentation
|
|
|
|
|
loop: $loop$,
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2017-02-20 20:52:00 +01:00
|
|
|
|
// Change the presentation direction to be RTL
|
|
|
|
|
rtl: $rtl$,
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2020-05-21 23:30:12 +02:00
|
|
|
|
// see https://revealjs.com/vertical-slides/#navigation-mode
|
2019-07-23 21:21:55 +02:00
|
|
|
|
navigationMode: '$navigationMode$',
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2020-05-07 19:03:41 +02:00
|
|
|
|
// Randomizes the order of slides each time the presentation loads
|
|
|
|
|
shuffle: $shuffle$,
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2017-02-20 20:52:00 +01:00
|
|
|
|
// Turns fragments on and off globally
|
|
|
|
|
fragments: $fragments$,
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2020-05-07 19:03:41 +02:00
|
|
|
|
// Flags whether to include the current fragment in the URL,
|
|
|
|
|
// so that reloading brings you to the same fragment position
|
|
|
|
|
fragmentInURL: $fragmentInURL$,
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2017-02-20 20:52:00 +01:00
|
|
|
|
// Flags if the presentation is running in an embedded mode,
|
|
|
|
|
// i.e. contained within a limited portion of the screen
|
|
|
|
|
embedded: $embedded$,
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2017-02-20 20:52:00 +01:00
|
|
|
|
// Flags if we should show a help overlay when the questionmark
|
|
|
|
|
// key is pressed
|
|
|
|
|
help: $help$,
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
|
|
|
|
// Flags if it should be possible to pause the presentation (blackout)
|
|
|
|
|
pause: $pause$,
|
|
|
|
|
|
2017-02-20 20:52:00 +01:00
|
|
|
|
// Flags if speaker notes should be visible to all viewers
|
|
|
|
|
showNotes: $showNotes$,
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
|
|
|
|
// Global override for autoplaying embedded media (null/true/false)
|
2020-05-07 19:03:41 +02:00
|
|
|
|
autoPlayMedia: $autoPlayMedia$,
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
|
|
|
|
// Global override for preloading lazy-loaded iframes (null/true/false)
|
2020-05-07 19:03:41 +02:00
|
|
|
|
preloadIframes: $preloadIframes$,
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2017-02-20 20:52:00 +01:00
|
|
|
|
// Number of milliseconds between automatically proceeding to the
|
|
|
|
|
// next slide, disabled when set to 0, this value can be overwritten
|
|
|
|
|
// by using a data-autoslide attribute on your slides
|
|
|
|
|
autoSlide: $autoSlide$,
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2017-02-20 20:52:00 +01:00
|
|
|
|
// Stop auto-sliding after user input
|
|
|
|
|
autoSlideStoppable: $autoSlideStoppable$,
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2020-05-07 19:03:41 +02:00
|
|
|
|
// Use this method for navigation when auto-sliding
|
|
|
|
|
autoSlideMethod: $autoSlideMethod$,
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2020-05-07 19:03:41 +02:00
|
|
|
|
// Specify the average time in seconds that you think you will spend
|
|
|
|
|
// presenting each slide. This is used to show a pacing timer in the
|
|
|
|
|
// speaker view
|
|
|
|
|
defaultTiming: $defaultTiming$,
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2017-02-20 20:52:00 +01:00
|
|
|
|
// Enable slide navigation via mouse wheel
|
|
|
|
|
mouseWheel: $mouseWheel$,
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
|
|
|
|
// The display mode that will be used to show slides
|
|
|
|
|
display: '$display$',
|
|
|
|
|
|
2020-05-07 19:03:41 +02:00
|
|
|
|
// Hide cursor if inactive
|
|
|
|
|
hideInactiveCursor: $hideInactiveCursor$,
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2020-05-07 19:03:41 +02:00
|
|
|
|
// Time before the cursor is hidden (in ms)
|
|
|
|
|
hideCursorTime: $hideCursorTime$,
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2017-02-20 20:52:00 +01:00
|
|
|
|
// Opens links in an iframe preview overlay
|
|
|
|
|
previewLinks: $previewLinks$,
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
|
|
|
|
// Transition style (none/fade/slide/convex/concave/zoom)
|
|
|
|
|
transition: '$transition$',
|
|
|
|
|
|
|
|
|
|
// Transition speed (default/fast/slow)
|
|
|
|
|
transitionSpeed: '$transitionSpeed$',
|
|
|
|
|
|
2017-02-20 20:52:00 +01:00
|
|
|
|
// Transition style for full page slide backgrounds
|
2021-06-22 01:40:52 +02:00
|
|
|
|
// (none/fade/slide/convex/concave/zoom)
|
|
|
|
|
backgroundTransition: '$backgroundTransition$',
|
|
|
|
|
|
2017-02-20 20:52:00 +01:00
|
|
|
|
// Number of slides away from the current that are visible
|
|
|
|
|
viewDistance: $viewDistance$,
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2020-05-07 19:03:41 +02:00
|
|
|
|
// Number of slides away from the current that are visible on mobile
|
|
|
|
|
// devices. It is advisable to set this to a lower number than
|
|
|
|
|
// viewDistance in order to save resources.
|
|
|
|
|
mobileViewDistance: $mobileViewDistance$,
|
2017-02-20 20:52:00 +01:00
|
|
|
|
$if(parallaxBackgroundImage)$
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2017-02-20 20:52:00 +01:00
|
|
|
|
// Parallax background image
|
|
|
|
|
parallaxBackgroundImage: '$parallaxBackgroundImage$', // e.g. "'https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg'"
|
2018-04-26 20:32:48 +02:00
|
|
|
|
$else$
|
|
|
|
|
$if(background-image)$
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2018-04-26 20:32:48 +02:00
|
|
|
|
// Parallax background image
|
|
|
|
|
parallaxBackgroundImage: '$background-image$', // e.g. "'https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg'"
|
|
|
|
|
$endif$
|
2017-02-20 20:52:00 +01:00
|
|
|
|
$endif$
|
|
|
|
|
$if(parallaxBackgroundSize)$
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2017-02-20 20:52:00 +01:00
|
|
|
|
// Parallax background size
|
|
|
|
|
parallaxBackgroundSize: '$parallaxBackgroundSize$', // CSS syntax, e.g. "2100px 900px"
|
|
|
|
|
$endif$
|
|
|
|
|
$if(parallaxBackgroundHorizontal)$
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2017-02-20 20:52:00 +01:00
|
|
|
|
// Amount to move parallax background (horizontal and vertical) on slide change
|
|
|
|
|
// Number, e.g. 100
|
|
|
|
|
parallaxBackgroundHorizontal: $parallaxBackgroundHorizontal$,
|
|
|
|
|
$endif$
|
|
|
|
|
$if(parallaxBackgroundVertical)$
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2017-02-20 20:52:00 +01:00
|
|
|
|
parallaxBackgroundVertical: $parallaxBackgroundVertical$,
|
|
|
|
|
$endif$
|
|
|
|
|
$if(width)$
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2017-02-20 20:52:00 +01:00
|
|
|
|
// The "normal" size of the presentation, aspect ratio will be preserved
|
|
|
|
|
// when the presentation is scaled to fit different resolutions. Can be
|
|
|
|
|
// specified using percentage units.
|
|
|
|
|
width: $width$,
|
|
|
|
|
$endif$
|
|
|
|
|
$if(height)$
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2017-02-20 20:52:00 +01:00
|
|
|
|
height: $height$,
|
|
|
|
|
$endif$
|
|
|
|
|
$if(margin)$
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2017-02-20 20:52:00 +01:00
|
|
|
|
// Factor of the display size that should remain empty around the content
|
|
|
|
|
margin: $margin$,
|
|
|
|
|
$endif$
|
|
|
|
|
$if(minScale)$
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2017-02-20 20:52:00 +01:00
|
|
|
|
// Bounds for smallest/largest possible scale to apply to content
|
|
|
|
|
minScale: $minScale$,
|
|
|
|
|
$endif$
|
|
|
|
|
$if(maxScale)$
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2017-02-20 20:52:00 +01:00
|
|
|
|
maxScale: $maxScale$,
|
|
|
|
|
$endif$
|
2017-06-18 11:41:40 +02:00
|
|
|
|
$if(mathjax)$
|
2021-06-22 01:40:52 +02:00
|
|
|
|
|
2017-06-18 11:41:40 +02:00
|
|
|
|
math: {
|
2018-06-12 18:35:27 +02:00
|
|
|
|
mathjax: '$mathjaxurl$',
|
2017-06-18 11:41:40 +02:00
|
|
|
|
config: 'TeX-AMS_HTML-full',
|
2017-12-02 06:41:48 +01:00
|
|
|
|
tex2jax: {
|
|
|
|
|
inlineMath: [['\\(','\\)']],
|
2017-12-02 07:02:07 +01:00
|
|
|
|
displayMath: [['\\[','\\]']],
|
2017-12-02 06:41:48 +01:00
|
|
|
|
balanceBraces: true,
|
|
|
|
|
processEscapes: false,
|
|
|
|
|
processRefs: true,
|
|
|
|
|
processEnvironments: true,
|
|
|
|
|
preview: 'TeX',
|
|
|
|
|
skipTags: ['script','noscript','style','textarea','pre','code'],
|
|
|
|
|
ignoreClass: 'tex2jax_ignore',
|
|
|
|
|
processClass: 'tex2jax_process'
|
|
|
|
|
},
|
2017-06-18 11:41:40 +02:00
|
|
|
|
},
|
|
|
|
|
$endif$
|
2017-02-20 20:52:00 +01:00
|
|
|
|
|
2020-05-21 23:30:12 +02:00
|
|
|
|
// reveal.js plugins
|
|
|
|
|
plugins: [
|
2017-06-18 11:41:40 +02:00
|
|
|
|
$if(mathjax)$
|
2020-05-21 23:30:12 +02:00
|
|
|
|
RevealMath,
|
2017-06-18 11:41:40 +02:00
|
|
|
|
$endif$
|
2020-05-21 23:30:12 +02:00
|
|
|
|
RevealNotes,
|
|
|
|
|
RevealSearch,
|
|
|
|
|
RevealZoom
|
2017-02-20 20:52:00 +01:00
|
|
|
|
]
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
$for(include-after)$
|
|
|
|
|
$include-after$
|
|
|
|
|
$endfor$
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|