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">
|
|
|
|
|
<link rel="stylesheet" href="$revealjs-url$/css/reveal.css">
|
2017-03-04 23:16:42 +01:00
|
|
|
|
<style type="text/css">
|
|
|
|
|
code{white-space: pre-wrap;}
|
2017-11-03 04:55:29 +01:00
|
|
|
|
span.smallcaps{font-variant: small-caps;}
|
2017-12-04 05:36:08 +01:00
|
|
|
|
span.underline{text-decoration: underline;}
|
2017-11-03 04:55:29 +01:00
|
|
|
|
div.column{display: inline-block; vertical-align: top; width: 50%;}
|
2017-02-20 20:52:00 +01:00
|
|
|
|
$if(quotes)$
|
2017-03-04 23:16:42 +01:00
|
|
|
|
q { quotes: "“" "”" "‘" "’"; }
|
2017-02-20 20:52:00 +01:00
|
|
|
|
$endif$
|
2017-03-04 23:16:42 +01:00
|
|
|
|
</style>
|
2017-02-20 20:52:00 +01:00
|
|
|
|
$if(highlighting-css)$
|
|
|
|
|
<style type="text/css">
|
|
|
|
|
$highlighting-css$
|
|
|
|
|
</style>
|
|
|
|
|
$endif$
|
|
|
|
|
$if(theme)$
|
|
|
|
|
<link rel="stylesheet" href="$revealjs-url$/css/theme/$theme$.css" id="theme">
|
|
|
|
|
$else$
|
|
|
|
|
<link rel="stylesheet" href="$revealjs-url$/css/theme/black.css" id="theme">
|
|
|
|
|
$endif$
|
|
|
|
|
$for(css)$
|
|
|
|
|
<link rel="stylesheet" href="$css$"/>
|
|
|
|
|
$endfor$
|
|
|
|
|
<!-- Printing and PDF exports -->
|
|
|
|
|
<script>
|
|
|
|
|
var link = document.createElement( 'link' );
|
|
|
|
|
link.rel = 'stylesheet';
|
|
|
|
|
link.type = 'text/css';
|
|
|
|
|
link.href = window.location.search.match( /print-pdf/gi ) ? '$revealjs-url$/css/print/pdf.css' : '$revealjs-url$/css/print/paper.css';
|
|
|
|
|
document.getElementsByTagName( 'head' )[0].appendChild( link );
|
|
|
|
|
</script>
|
|
|
|
|
<!--[if lt IE 9]>
|
|
|
|
|
<script src="$revealjs-url$/lib/js/html5shiv.js"></script>
|
|
|
|
|
<![endif]-->
|
|
|
|
|
$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)$
|
2017-12-05 01:26:04 +01:00
|
|
|
|
<section id="$idprefix$title-slide">
|
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$
|
|
|
|
|
$if(date)$
|
|
|
|
|
<p class="date">$date$</p>
|
|
|
|
|
$endif$
|
|
|
|
|
</section>
|
|
|
|
|
$endif$
|
|
|
|
|
$if(toc)$
|
|
|
|
|
<section id="$idprefix$TOC">
|
2017-06-26 16:07:59 +02:00
|
|
|
|
$table-of-contents$
|
2017-02-20 20:52:00 +01:00
|
|
|
|
</section>
|
|
|
|
|
$endif$
|
|
|
|
|
|
|
|
|
|
$body$
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<script src="$revealjs-url$/lib/js/head.min.js"></script>
|
|
|
|
|
<script src="$revealjs-url$/js/reveal.js"></script>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
|
|
// Full list of configuration options available at:
|
|
|
|
|
// https://github.com/hakimel/reveal.js#configuration
|
|
|
|
|
Reveal.initialize({
|
|
|
|
|
$if(controls)$
|
|
|
|
|
// Display controls in the bottom right corner
|
|
|
|
|
controls: $controls$,
|
|
|
|
|
$endif$
|
|
|
|
|
$if(progress)$
|
|
|
|
|
// Display a presentation progress bar
|
|
|
|
|
progress: $progress$,
|
|
|
|
|
$endif$
|
|
|
|
|
$if(slideNumber)$
|
|
|
|
|
// Display the page number of the current slide
|
|
|
|
|
slideNumber: $slideNumber$,
|
|
|
|
|
$endif$
|
|
|
|
|
// Push each slide change to the browser history
|
2017-02-20 22:06:37 +01:00
|
|
|
|
$if(history)$
|
2017-02-20 20:52:00 +01:00
|
|
|
|
history: $history$,
|
2017-02-20 22:06:37 +01:00
|
|
|
|
$else$
|
|
|
|
|
history: true,
|
2017-02-20 20:52:00 +01:00
|
|
|
|
$endif$
|
|
|
|
|
$if(keyboard)$
|
|
|
|
|
// Enable keyboard shortcuts for navigation
|
|
|
|
|
keyboard: $keyboard$,
|
|
|
|
|
$endif$
|
|
|
|
|
$if(overview)$
|
|
|
|
|
// Enable the slide overview mode
|
|
|
|
|
overview: $overview$,
|
|
|
|
|
$endif$
|
|
|
|
|
$if(center)$
|
|
|
|
|
// Vertical centering of slides
|
|
|
|
|
center: $center$,
|
|
|
|
|
$endif$
|
|
|
|
|
$if(touch)$
|
|
|
|
|
// Enables touch navigation on devices with touch input
|
|
|
|
|
touch: $touch$,
|
|
|
|
|
$endif$
|
|
|
|
|
$if(loop)$
|
|
|
|
|
// Loop the presentation
|
|
|
|
|
loop: $loop$,
|
|
|
|
|
$endif$
|
|
|
|
|
$if(rtl)$
|
|
|
|
|
// Change the presentation direction to be RTL
|
|
|
|
|
rtl: $rtl$,
|
|
|
|
|
$endif$
|
|
|
|
|
$if(fragments)$
|
|
|
|
|
// Turns fragments on and off globally
|
|
|
|
|
fragments: $fragments$,
|
|
|
|
|
$endif$
|
|
|
|
|
$if(embedded)$
|
|
|
|
|
// Flags if the presentation is running in an embedded mode,
|
|
|
|
|
// i.e. contained within a limited portion of the screen
|
|
|
|
|
embedded: $embedded$,
|
|
|
|
|
$endif$
|
|
|
|
|
$if(help)$
|
|
|
|
|
// Flags if we should show a help overlay when the questionmark
|
|
|
|
|
// key is pressed
|
|
|
|
|
help: $help$,
|
|
|
|
|
$endif$
|
|
|
|
|
$if(showNotes)$
|
|
|
|
|
// Flags if speaker notes should be visible to all viewers
|
|
|
|
|
showNotes: $showNotes$,
|
|
|
|
|
$endif$
|
|
|
|
|
$if(autoSlide)$
|
|
|
|
|
// 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$,
|
|
|
|
|
$endif$
|
|
|
|
|
$if(autoSlideStoppable)$
|
|
|
|
|
// Stop auto-sliding after user input
|
|
|
|
|
autoSlideStoppable: $autoSlideStoppable$,
|
|
|
|
|
$endif$
|
|
|
|
|
$if(mouseWheel)$
|
|
|
|
|
// Enable slide navigation via mouse wheel
|
|
|
|
|
mouseWheel: $mouseWheel$,
|
|
|
|
|
$endif$
|
2018-07-19 04:26:16 +02:00
|
|
|
|
$if(rollingLinks)$
|
|
|
|
|
// Apply a 3D roll to links on hover
|
|
|
|
|
rollingLinks: $rollingLinks$,
|
|
|
|
|
$endif$
|
2017-02-20 20:52:00 +01:00
|
|
|
|
$if(hideAddressBar)$
|
|
|
|
|
// Hides the address bar on mobile devices
|
|
|
|
|
hideAddressBar: $hideAddressBar$,
|
|
|
|
|
$endif$
|
|
|
|
|
$if(previewLinks)$
|
|
|
|
|
// Opens links in an iframe preview overlay
|
|
|
|
|
previewLinks: $previewLinks$,
|
|
|
|
|
$endif$
|
|
|
|
|
$if(transition)$
|
|
|
|
|
// Transition style
|
|
|
|
|
transition: '$transition$', // none/fade/slide/convex/concave/zoom
|
|
|
|
|
$endif$
|
|
|
|
|
$if(transitionSpeed)$
|
|
|
|
|
// Transition speed
|
|
|
|
|
transitionSpeed: '$transitionSpeed$', // default/fast/slow
|
|
|
|
|
$endif$
|
|
|
|
|
$if(backgroundTransition)$
|
|
|
|
|
// Transition style for full page slide backgrounds
|
|
|
|
|
backgroundTransition: '$backgroundTransition$', // none/fade/slide/convex/concave/zoom
|
|
|
|
|
$endif$
|
|
|
|
|
$if(viewDistance)$
|
|
|
|
|
// Number of slides away from the current that are visible
|
|
|
|
|
viewDistance: $viewDistance$,
|
|
|
|
|
$endif$
|
|
|
|
|
$if(parallaxBackgroundImage)$
|
|
|
|
|
// 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)$
|
|
|
|
|
// 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)$
|
|
|
|
|
// Parallax background size
|
|
|
|
|
parallaxBackgroundSize: '$parallaxBackgroundSize$', // CSS syntax, e.g. "2100px 900px"
|
|
|
|
|
$endif$
|
|
|
|
|
$if(parallaxBackgroundHorizontal)$
|
|
|
|
|
// Amount to move parallax background (horizontal and vertical) on slide change
|
|
|
|
|
// Number, e.g. 100
|
|
|
|
|
parallaxBackgroundHorizontal: $parallaxBackgroundHorizontal$,
|
|
|
|
|
$endif$
|
|
|
|
|
$if(parallaxBackgroundVertical)$
|
|
|
|
|
parallaxBackgroundVertical: $parallaxBackgroundVertical$,
|
|
|
|
|
$endif$
|
|
|
|
|
$if(width)$
|
|
|
|
|
// 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)$
|
|
|
|
|
height: $height$,
|
|
|
|
|
$endif$
|
|
|
|
|
$if(margin)$
|
|
|
|
|
// Factor of the display size that should remain empty around the content
|
|
|
|
|
margin: $margin$,
|
|
|
|
|
$endif$
|
|
|
|
|
$if(minScale)$
|
|
|
|
|
// Bounds for smallest/largest possible scale to apply to content
|
|
|
|
|
minScale: $minScale$,
|
|
|
|
|
$endif$
|
|
|
|
|
$if(maxScale)$
|
|
|
|
|
maxScale: $maxScale$,
|
|
|
|
|
$endif$
|
2017-06-18 11:41:40 +02:00
|
|
|
|
$if(mathjax)$
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
// Optional reveal.js plugins
|
|
|
|
|
dependencies: [
|
|
|
|
|
{ src: '$revealjs-url$/lib/js/classList.js', condition: function() { return !document.body.classList; } },
|
|
|
|
|
{ src: '$revealjs-url$/plugin/zoom-js/zoom.js', async: true },
|
2017-06-18 11:41:40 +02:00
|
|
|
|
$if(notes-server)$
|
2018-10-22 19:40:49 +02:00
|
|
|
|
{ src: '$revealjs-url$/socket.io/socket.io.js', async: true },
|
2017-02-20 20:52:00 +01:00
|
|
|
|
{ src: '$revealjs-url$/plugin/notes-server/client.js', async: true },
|
2017-06-18 11:41:40 +02:00
|
|
|
|
$endif$
|
|
|
|
|
$if(mathjax)$
|
|
|
|
|
{ src: '$revealjs-url$/plugin/math/math.js', async: true },
|
|
|
|
|
$endif$
|
2017-02-20 20:52:00 +01:00
|
|
|
|
{ src: '$revealjs-url$/plugin/notes/notes.js', async: true }
|
|
|
|
|
]
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
$for(include-after)$
|
|
|
|
|
$include-after$
|
|
|
|
|
$endfor$
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|