example2.html 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="author" content="Eemeli Blåsten">
  6. <title>Hermite functions</title>
  7. <!-- Favicon: the small icon in browser tabs and history -->
  8. <link rel="shortcut icon" type="image/png" href="pics/favicon.png" />
  9. <!-- CSS style sheet -->
  10. <link rel="stylesheet" href="CSSJS/lettus.css">
  11. <!-- Configure MathJax -->
  12. <script src="CSSJS/lettus_conf_mj.js"></script>
  13. <!-- Typeset MathJax formulas and number theorems etc. -->
  14. <script src="CSSJS/lettus_typeset.js"></script>
  15. <!-- Latex macros -->
  16. \(
  17. \newcommand{\abs}[1]{{\left\lvert #1 \right\rvert}}
  18. \newcommand{\norm}[1]{{\left\lVert #1 \right\rVert}}
  19. \newcommand{\supp}{\operatorname{supp}}
  20. \newcommand{\C}{\mathbb{C}}
  21. \newcommand{\R}{\mathbb{R}}
  22. \newcommand{\Z}{\mathbb{Z}}
  23. \newcommand{\N}{\mathbb{N}}
  24. \newcommand{\D}{\mathscr{D}}
  25. \newcommand{\S}{\mathscr{S}}
  26. \newcommand{\F}{\mathscr{F}}
  27. \)
  28. </head>
  29. <body class="content">
  30. <h1>Just a few things to refer to</h1>
  31. <footer>
  32. <small>
  33. <pre> Copyright (C) 2015-2018 Eemeli Blåsten.
  34. Permission is granted to copy, distribute and/or modify this document
  35. under the terms of the GNU Free Documentation License, Version 1.3
  36. or any later version published by the Free Software Foundation;
  37. with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
  38. A copy of the license is included in the section entitled &quot;GNU
  39. Free Documentation License&quot;.
  40. </pre>
  41. </small>
  42. </footer>
  43. <p>
  44. This document should have a bunch of theorems and equations, all with
  45. different numbering. The purpose is to test wether getting the divs
  46. into another document can be done.
  47. \begin{equation}
  48. a+b=c\label{eq1}
  49. \end{equation}
  50. </p>
  51. <div class="theorem" title="Awesome!" id="thm1">
  52. <p>
  53. Let $a \gt 2$ and $b \lt 3$. Then if $c = a/b$ we have
  54. \begin{equation}
  55. \label{cEquation}
  56. c \gt 2/3.
  57. \end{equation}
  58. </p>
  59. </div>
  60. <div class="corollary" id="corolla">
  61. <p>
  62. Corolla is an awesome car!
  63. </p>
  64. </div>
  65. </body>