|
| 1 | +<!doctype html> |
| 2 | +<html> |
| 3 | + <head> |
| 4 | + <meta charset="utf-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> |
| 6 | + |
| 7 | + <title>Giraffe</title> |
| 8 | + |
| 9 | + <link rel="stylesheet" href="../../dist/reset.css"> |
| 10 | + <link rel="stylesheet" href="../../dist/reveal.css"> |
| 11 | + <link rel="stylesheet" href="../../dist/theme/white.css" id="theme"> |
| 12 | + <!-- <link rel="stylesheet" href="../common/css/themes/au2/au.css" id="au"> --> |
| 13 | + |
| 14 | + <!-- Theme used for syntax highlighted code --> |
| 15 | + <link rel="stylesheet" href="../css/highlight.js/idea.css" id="highlight-theme"> |
| 16 | + <script src="../../plugin/math/math.js"></script> |
| 17 | + <style> |
| 18 | + .reveal ul { |
| 19 | + list-style-type: none; |
| 20 | + } |
| 21 | + .reveal ul ul { |
| 22 | + list-style-type: none; |
| 23 | + } |
| 24 | + </style> |
| 25 | + </head> |
| 26 | + <body> |
| 27 | + <div class="reveal"> |
| 28 | + <div class="slides"> |
| 29 | + <section data-markdown="./giraffe.md" |
| 30 | + data-separator="^(\r\n?|\n)---(\r\n?|\n)$" |
| 31 | + data-separator-vertical="^(\r\n?|\n)----(\r\n?|\n)$" |
| 32 | + data-separator-notes="^Note:" |
| 33 | + data-charset="iso-8859-15"> |
| 34 | + |
| 35 | + <!-- |
| 36 | + Note that Windows uses `\r\n` instead of `\n` as its linefeed character. |
| 37 | + For a regex that supports all operating systems, use `\r?\n` instead of `\n`. |
| 38 | + --> |
| 39 | + </section> |
| 40 | + </div> |
| 41 | + </div> |
| 42 | + |
| 43 | + <script src="../../dist/reveal.js"></script> |
| 44 | + <script src="../../plugin/notes/notes.js"></script> |
| 45 | + <script src="../../plugin/markdown/markdown.js"></script> |
| 46 | + <script src="../../plugin/highlight/highlight.js"></script> |
| 47 | + <script> |
| 48 | + // More info about initialization & config: |
| 49 | + // - https://revealjs.com/initialization/ |
| 50 | + // - https://revealjs.com/config/ |
| 51 | + Reveal.initialize({ |
| 52 | + hash: true, |
| 53 | + "showNotes": false, |
| 54 | + "pdfSeparateFragments": false , |
| 55 | + "slideNumber": true, |
| 56 | + "theme": "au", |
| 57 | + "transition": "slide", |
| 58 | + "controls": true, |
| 59 | + "progress": true, |
| 60 | + "history": true, |
| 61 | + "center": true, |
| 62 | + math: { |
| 63 | + mathjax: 'https://cdn.jsdelivr.net/gh/mathjax/mathjax@2.7.8/MathJax.js', |
| 64 | + config: 'TeX-AMS_HTML-full', |
| 65 | + // pass other options into `MathJax.Hub.Config()` |
| 66 | + TeX: { Macros: { RR: "{\\bf R}" } } |
| 67 | + }, |
| 68 | + // Learn about plugins: https://revealjs.com/plugins/ |
| 69 | + plugins: [ RevealMarkdown, RevealHighlight, RevealNotes, RevealMath ] |
| 70 | + }); |
| 71 | + </script> |
| 72 | + |
| 73 | + </body> |
| 74 | +</html> |
0 commit comments