목표

  • MathJax를 티스토리에 적용한다.

MathJax?

  • MathJax은 수식을 웹페이지에서 표현해주기 위해 사용되는 도구이다.
  • 사용법은 https://www.mathjax.org/를 참고한다.

MathJax 적용하기

  • 관리자 모드 > 스킨 편집 > html 편집을 누르고, head 안쪽에 아래 내용을 삽입한다.

 

<script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML"></script>

<script type="text/x-mathjax-config">
MathJax.Hub.Config({
    "HTML-CSS": {
        messageStyle: "normal",
        linebreaks: {
            automatic: false
        }
    },
    tex2jax: { 
        inlineMath: [["$","$"],["\\(","\\)"]], 
        displayMath: [["$$","$$"],["\\[","\\]"]], 
        processEscapes: true
    },
    TeX: {
        Macros: {
            tr: "{\\scriptscriptstyle\\mathrm{T}}",
        }
    }
});
</script>

+ Recent posts