20 lines
616 B
HTML
20 lines
616 B
HTML
<!--
|
|
Author: Ray-Eldath
|
|
refer to:
|
|
- http://docs.mathjax.org/en/latest/options/index.html
|
|
-->
|
|
{% if site.mathjax %}
|
|
<script type="text/javascript" async src="https://cdn.bootcss.com/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_CHTML"></script>
|
|
|
|
<script type="text/x-mathjax-config">
|
|
MathJax.Hub.Config({
|
|
jax: ["input/TeX", "output/HTML-CSS"],
|
|
tex2jax: {
|
|
inlineMath: [ ["$", "$"] ],
|
|
displayMath: [ ["$$", "$$"] ],
|
|
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code']
|
|
},
|
|
"HTML-CSS": { preferredFont: "TeX", availableFonts: ["STIX","TeX"] }
|
|
});
|
|
</script>
|
|
{% endif %} |