Skip to content

Commit

Permalink
Merge pull request #16 from LFDT-Lockness/fix-double-header
Browse files Browse the repository at this point in the history
Try to fix double-header issue
  • Loading branch information
survived authored Dec 5, 2024
2 parents a7e3770 + d8d34ef commit 8c89c5a
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 44 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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 8c89c5a

Please sign in to comment.