updated mathjax, added calc iii notes

This commit is contained in:
Lucas Rufkahr
2026-03-02 21:12:34 -06:00
parent c3dd0c0dd8
commit 96ef87b663
9 changed files with 261 additions and 15 deletions

View File

@@ -4,9 +4,12 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
{{ if .Param "math" }}
{{ partialCached "math.html" . }}
{{ end }}
<title></title>
</head>
<body>
<body style="width: 60%; margin: 0 auto;">
<header>{{ partial "header.html" }}</header>
<main>
{{ block "main" . }}

Binary file not shown.

View File

@@ -0,0 +1,18 @@
<script type="text/javascript" id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@4/tex-mml-chtml.js"></script>
<script>
MathJax = {
tex: {
displayMath: [['\\[', '\\]'], ['$$', '$$']], // block
inlineMath: [['\\(', '\\)']] // inline
},
loader:{
load: ['ui/safe']
},
output: {
displayAlign: 'left',
displayIndent: '1em'
},
};
</script>