Skip to content

Instantly share code, notes, and snippets.

@pandanote-info
Created January 13, 2019 03:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pandanote-info/dcfeb0f569e64dc0242467b73c4f711c to your computer and use it in GitHub Desktop.
Save pandanote-info/dcfeb0f569e64dc0242467b73c4f711c to your computer and use it in GitHub Desktop.
GitHub PagesでMathJaxを使用するためのコード例。
{% if page.mathjax %}
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
displayAlign: "left",
displayIndent: "2em",
TeX: {
equationNumbers: { autoNumber: "AMS" },
},
tex2jax: {
inlineMath: [['$','$'], ['\\(','\\)']],
processEscapes: true
}
});
</script>
<script
type="text/javascript"
charset="utf-8"
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment