-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlatex.html
More file actions
48 lines (39 loc) · 1.87 KB
/
latex.html
File metadata and controls
48 lines (39 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LaTeX.css + KaTeX Test</title>
<link rel="stylesheet" href="https://latex.now.sh/style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.13.11/dist/katex.min.css"
integrity="sha384-Um5gpz1odJg5Z4HAmzPtgZKdTBHZdw8S29IecapCSB31ligYPhHQZMIlWLYQGVoc" crossorigin="anonymous">
<!-- The loading of KaTeX is deferred to speed up page rendering -->
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.13.11/dist/katex.min.js"
integrity="sha384-YNHdsYkH6gMx9y3mRkmcJ2mFUjTd0qNQQvY9VYZgQd7DcN7env35GzlmFaZ23JGp" crossorigin="anonymous"></script>
<!-- To automatically render math in text elements, include the auto-render extension: -->
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.13.11/dist/contrib/auto-render.min.js"
integrity="sha384-vZTG03m+2yp6N6BNi5iM4rW4oIwk5DfcNdFfxkk9ZWpDriOkXX8voJBFrAO7MpVl" crossorigin="anonymous"
onload="renderMathInElement(document.body);"></script>
</head>
<body>
<header>
<h1>$$\LaTeX\text{.css} + \KaTeX$$</h1>
</header>
<main>
<p class="abstract">
Here's a sample of some (more) KaTeX typesetting:
$$e^{i\pi} + 1 = 0$$
</p>
<h2>$$\KaTeX$$</h2>
<ul>
<li><a href="https://katex.org/">https://katex.org/</a></li>
<li><a href="https://github.com/KaTeX/KaTeX">https://github.com/KaTeX/KaTeX</a></li>
</ul>
<h2>$$\LaTeX\text{.css}$$</h2>
<ul>
<li><a href="https://latex.now.sh/">https://latex.now.sh/</a></li>
<li><a href="https://github.com/vincentdoerig/latex-css">https://github.com/vincentdoerig/latex-css</a></li>
</ul>
</main>
</body>
</html>