forked from Sasserisop/MATH201
add macro for \cancelto
This commit is contained in:
parent
a66b2b7373
commit
a7799060c6
|
@ -92,14 +92,17 @@
|
|||
<script type="text/javascript">
|
||||
|
||||
|
||||
function renderMath(){ renderMathInElement(document.body, {
|
||||
function renderMath(){
|
||||
const macros = {'\\cancelto': '\\overset{\\phantom{\\normalsize{\\cancel{#2}}}\\hspace{1em}#1}{\\cancel{#2}}'};
|
||||
renderMathInElement(document.body, {
|
||||
delimiters: [
|
||||
{left: '$$', right: '$$', display: true},
|
||||
{left: '$', right: '$', display: false},
|
||||
{left: '\\(', right: '\\)', display: false},
|
||||
{left: '\\[', right: '\\]', display: true}
|
||||
],
|
||||
throwOnError : false
|
||||
throwOnError : false,
|
||||
macros : macros
|
||||
});
|
||||
}
|
||||
//document.addEventListener("DOMContentLoaded", renderMath);
|
||||
|
|
Loading…
Reference in New Issue