123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- {%- set mathjax_uri = theme.vendors.mathjax or '//cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js' %}
- <script>
- if (typeof MathJax === 'undefined') {
- window.MathJax = {
- loader: {
- {%- if theme.math.mathjax.mhchem %}
- load: ['[tex]/mhchem'],
- {%- endif %}
- source: {
- '[tex]/amsCd': '[tex]/amscd',
- '[tex]/AMScd': '[tex]/amscd'
- }
- },
- tex: {
- inlineMath: {'[+]': [['$', '$']]},
- {%- if theme.math.mathjax.mhchem %}
- packages: {'[+]': ['mhchem']},
- {%- endif %}
- tags: 'ams'
- },
- options: {
- renderActions: {
- findScript: [10, doc => {
- document.querySelectorAll('script[type^="math/tex"]').forEach(node => {
- const display = !!node.type.match(/; *mode=display/);
- const math = new doc.options.MathItem(node.textContent, doc.inputJax[0], display);
- const text = document.createTextNode('');
- node.parentNode.replaceChild(text, node);
- math.start = {node: text, delim: '', n: 0};
- math.end = {node: text, delim: '', n: 0};
- doc.math.push(math);
- });
- }, '', false],
- insertedScript: [200, () => {
- document.querySelectorAll('mjx-container').forEach(node => {
- let target = node.parentNode;
- if (target.nodeName.toLowerCase() === 'li') {
- target.parentNode.classList.add('has-jax');
- }
- });
- }, '', false]
- }
- }
- };
- (function () {
- var script = document.createElement('script');
- script.src = '{{ mathjax_uri }}';
- script.defer = true;
- document.head.appendChild(script);
- })();
- } else {
- MathJax.startup.document.state(0);
- MathJax.texReset();
- MathJax.typeset();
- }
- </script>
|