New version of the lecture

This commit is contained in:
2024-02-02 09:49:21 +01:00
parent 050956c01b
commit f6431654dc
190 changed files with 7703 additions and 2629 deletions

View File

@@ -0,0 +1,15 @@
import {KaTeX} from "./katex";
import {MathJax2} from "./mathjax2";
import {MathJax3} from "./mathjax3";
const defaultTypesetter = MathJax2;
/*!
* This plugin is a wrapper for the MathJax2,
* MathJax3 and KaTeX typesetter plugins.
*/
export default Plugin = Object.assign( defaultTypesetter(), {
KaTeX,
MathJax2,
MathJax3
} );