|
| 1 | +<link |
| 2 | + rel="stylesheet" |
| 3 | + href=" https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css" |
| 4 | + integrity="sha384-WcoG4HRXMzYzfCgiyfrySxx90XSl2rxY5mnVY5TwtWE6KLrArNKn0T/mOgNL0Mmi" |
| 5 | + crossorigin="anonymous" |
| 6 | +> |
| 7 | +<script |
| 8 | + src=" https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js" |
| 9 | + integrity="sha384-J+9dG2KMoiR9hqcFao0IBLwxt6zpcyN68IgwzsCSkbreXUjmNVRhPFTssqdSGjwQ" |
| 10 | + crossorigin="anonymous" |
| 11 | +> |
| 12 | +</script> |
| 13 | +<script |
| 14 | + src=" https://cdn.jsdelivr.net/npm/[email protected]/dist/contrib/auto-render.min.js" |
| 15 | + integrity="sha384-hCXGrW6PitJEwbkoStFjeJxv+fSOOQKOPbJxSfM6G5sWZjAyWhXiTIIAmQqnlLlh" |
| 16 | + crossorigin="anonymous" |
| 17 | +> |
| 18 | +</script> |
| 19 | +<script |
| 20 | + src=" https://cdn.jsdelivr.net/npm/[email protected]/dist/contrib/copy-tex.min.js" |
| 21 | + integrity="sha384-HORx6nWi8j5/mYA+y57/9/CZc5z8HnEw4WUZWy5yOn9ToKBv1l58vJaufFAn9Zzi" |
| 22 | + crossorigin="anonymous" |
| 23 | +> |
| 24 | +</script> |
| 25 | + |
| 26 | +<script> |
| 27 | +document.addEventListener("DOMContentLoaded", () => { |
| 28 | + renderMathInElement(document.body, { |
| 29 | + strict: "error", |
| 30 | + throwOnError: true, |
| 31 | + trust: true, |
| 32 | + delimiters: [{left: "$$", right: "$$", display: true}, {left: "$", right: "$", display: false}], |
| 33 | + macros: { |
| 34 | + // Beta function |
| 35 | + "\\B": "\\mathop{\\Beta}", |
| 36 | + |
| 37 | + // error function |
| 38 | + "\\erf": "\\mathop{\\mathrm{erf}}", |
| 39 | + "\\erfc": "\\mathop{\\mathrm{erfc}}", |
| 40 | + "\\erfi": "\\mathop{\\mathrm{erfi}}", |
| 41 | + |
| 42 | + // sign function |
| 43 | + "\\sgn": "\\mathop{\\mathrm{sgn}}", |
| 44 | + |
| 45 | + // kelvin functions |
| 46 | + "\\ber": "\\mathop{\\mathrm{ber}}", |
| 47 | + "\\berp": "\\mathop{\\mathrm{ber}'}", |
| 48 | + "\\bei": "\\mathop{\\mathrm{bei}}", |
| 49 | + "\\beip": "\\mathop{\\mathrm{bei}'}", |
| 50 | + "\\ker": "\\mathop{\\mathrm{ker}}", |
| 51 | + "\\kerp": "\\mathop{\\mathrm{ker}'}", |
| 52 | + "\\kei": "\\mathop{\\mathrm{kei}}", |
| 53 | + "\\keip": "\\mathop{\\mathrm{kei}'}", |
| 54 | + |
| 55 | + // sine and cosine integrals |
| 56 | + "\\Si": "\\mathop{\\mathrm{Si}}", |
| 57 | + "\\Ci": "\\mathop{\\mathrm{Ci}}", |
| 58 | + "\\Shi": "\\mathop{\\mathrm{Shi}}", |
| 59 | + "\\Chi": "\\mathop{\\mathrm{Chi}}", |
| 60 | + |
| 61 | + // falling and rising factorials |
| 62 | + "\\fpow": "#1^{\\overline{#2}}", |
| 63 | + "\\rpow": "#1^{\\underline{#2}}", |
| 64 | + |
| 65 | + // some missing "physics" tex package commands |
| 66 | + "\\dd": "\\,\\mathrm{d}{#1}", |
| 67 | + }, |
| 68 | + }) |
| 69 | +}) |
| 70 | +</script> |
| 71 | + |
| 72 | +<style> |
| 73 | +.docblock > p { overflow-y: hidden } |
| 74 | +</style> |
0 commit comments