math.html 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>reveal.js - The HTML Presentation Framework</title>
  6. <meta name="description" content="A framework for easily creating beautiful presentations using HTML">
  7. <meta name="author" content="Hakim El Hattab">
  8. <meta name="apple-mobile-web-app-capable" content="yes" />
  9. <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
  11. <link rel="stylesheet" href="../css/reveal.min.css">
  12. <link rel="stylesheet" href="../css/theme/default.css" id="theme">
  13. <!-- For syntax highlighting -->
  14. <link rel="stylesheet" href="../lib/css/zenburn.css">
  15. <!--[if lt IE 9]>
  16. <script src="lib/js/html5shiv.js"></script>
  17. <![endif]-->
  18. </head>
  19. <body>
  20. <div class="reveal">
  21. <div class="slides">
  22. <section>
  23. <h1>Reveal.js Math Plugin</h1>
  24. </section>
  25. <section>
  26. \[\begin{aligned}
  27. \dot{x} &amp; = \sigma(y-x) \\
  28. \dot{y} &amp; = \rho x - y - xz \\
  29. \dot{z} &amp; = -\beta z + xy
  30. \end{aligned} \]
  31. </section>
  32. </div>
  33. </div>
  34. <script src="../lib/js/head.min.js"></script>
  35. <script src="../js/reveal.min.js"></script>
  36. <script>
  37. Reveal.initialize({
  38. dependencies: [
  39. { src: '../lib/js/classList.js', condition: function() { return !document.body.classList; } },
  40. { src: '../plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
  41. { src: '../plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
  42. { src: '../plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
  43. { src: '../plugin/math/math.js', async: true }
  44. ]
  45. });
  46. </script>
  47. </body>
  48. </html>