Skip to content

Commit

Permalink
Try to fix double-header issue
Browse files Browse the repository at this point in the history
Signed-off-by: Denis Varlakov <[email protected]>
  • Loading branch information
survived committed Dec 5, 2024
1 parent a7e3770 commit bdd8da0
Showing 1 changed file with 31 additions and 43 deletions.
74 changes: 31 additions & 43 deletions katex-header.html
Original file line number Diff line number Diff line change
@@ -1,50 +1,38 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">

<html>
<head>
<link rel="stylesheet" href=
"https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css"
integrity=
"sha384-RZU/ijkSsFbcmivfdRBQDtwuwVqK7GMOw6IMvKyeWL2K5UAlyp6WonmB8m7Jd0Hn"
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css"
integrity="sha384-RZU/ijkSsFbcmivfdRBQDtwuwVqK7GMOw6IMvKyeWL2K5UAlyp6WonmB8m7Jd0Hn"
crossorigin="anonymous" type="text/css">
<script defer src=
"https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js"
integrity=
"sha384-pK1WpvzWVBQiP0/GjnvRxV4mOb0oxFuyRxJlk6vVw146n3egcN5C925NCP7a7BY8"
<script defer
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js"
integrity="sha384-pK1WpvzWVBQiP0/GjnvRxV4mOb0oxFuyRxJlk6vVw146n3egcN5C925NCP7a7BY8"
crossorigin="anonymous" type="text/javascript">
</script>
<script defer src=
"https://cdn.jsdelivr.net/npm/[email protected]/dist/contrib/auto-render.min.js"
integrity=
"sha384-vZTG03m+2yp6N6BNi5iM4rW4oIwk5DfcNdFfxkk9ZWpDriOkXX8voJBFrAO7MpVl"
<script defer
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/contrib/auto-render.min.js"
integrity="sha384-vZTG03m+2yp6N6BNi5iM4rW4oIwk5DfcNdFfxkk9ZWpDriOkXX8voJBFrAO7MpVl"
crossorigin="anonymous" type="text/javascript">
</script>
<script type="text/javascript">
document.addEventListener("DOMContentLoaded", function() {
renderMathInElement(document.body, {
delimiters: [
{left: "$$", right: "$$", display: true},
{left: "\\(", right: "\\)", display: false},
{left: "$", right: "$", display: false},
{left: "\\[", right: "\\]", display: true}
],
macros: {
"\\Zq": "\\mathbb{Z}_q",
"\\G": "\\mathbb{G}",
"\\T": "\\mathbb{T}",
"\\O": "\\mathcal{O}",
"\\P": "\\mathcal{P}",
"\\V": "\\mathcal{V}",
"\\H": "\\mathcal{H}",
"\\?": "\\stackrel{?}{=}",
},
});
});
</script>

<title></title>
</head>
<script type="text/javascript">
document.addEventListener("DOMContentLoaded", function() {
renderMathInElement(document.body, {
delimiters: [
{left: "$$", right: "$$", display: true},
{left: "\\(", right: "\\)", display: false},
{left: "$", right: "$", display: false},
{left: "\\[", right: "\\]", display: true}
],
macros: {
"\\Zq": "\\mathbb{Z}_q",
"\\G": "\\mathbb{G}",
"\\T": "\\mathbb{T}",
"\\O": "\\mathcal{O}",
"\\P": "\\mathcal{P}",
"\\V": "\\mathcal{V}",
"\\H": "\\mathcal{H}",
"\\?": "\\stackrel{?}{=}",
},
});
});
</script>

<body>
</body>
</html>

0 comments on commit bdd8da0

Please sign in to comment.