본문 바로가기

티스토리 관리

티스토리 관리 - 수식 쉽게 넣기

반응형

R markdown formula를 이용해 수식을 넣는 방법입니다.

티스토리 블로그 관리 -> 스킨 편집 -> html편집으로 들어가 <head> </head> 태그 사이에 다음 소스를 집어 넣습니다.

 

<script>

(function () {

var script = document.createElement("script");

script.type = "text/javascript";

script.src  = "https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML";

document.getElementsByTagName("head")[0].appendChild(script);

})();

</script>

 

그 후 글쓰실때 구글에 R markdown formula를 검색해 문법을 찾아 원하는 수식을 넣어주시면 됩니다.