Newer
Older
schrodinger / src / template_presentation.html
<!DOCTYPE html>
<html lang="en">

<head>
  <title></title>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">

  <link rel="stylesheet" href="css/reveal.css">
  <link rel="stylesheet" href="css/moon.css" id="theme">
  <script src="js/reveal.js"></script>

  <script src="js/math.js"></script>
  <style>
    .katex-display,
    .katex {
      font-size: 80% !important;
      margin: 1em !important;
    }

    .small {
      scale: 80%;
    }
  </style>
</head>

<body class="reveal">
  <div class="slides">
    <section>
      <section data-auto-animate>
        <p>
          <DATA />
        </p>
      </section>
    </section>
  </div>
</body>
<script>
  Reveal.configure({
    keyboard: {
      40: "next",
      38: "prev",
    },
  });
  Reveal.initialize({
    hash: true,
    transition: "none",
    history: "true",
    plugins: [RevealMath.KaTeX],
  });
</script>

</html>