수학

티스토리에서 수식 입력하기

★ ☆ 2021. 1. 10. 11:48

 

R Markdown을 사용하여 수식을 입력할 수 있다.

 

R Markdown 사용법: rpruim.github.io/s341/S19/from-class/MathinRmd.html

 

Mathematics in R Markdown

Math inside RMarkdown In side a text chunk, you can use mathematical notation if you surround it by dollar signs $ for “inline mathematics” and $$ for “displayed equations”. Do not leave a space between the $ and your mathematical notation. Example

rpruim.github.io

 

R Markdown을 사용하기 위해서 티스토리 스킨을 수정해야 한다. 

1.  스킨편집

2. html 편집

 

 

 

3. 아래 <script>를 html에 추가한다

<script>
    (function (){
           var script = document.createElement("script");
           script.type = "test/javascript";
           script.src = "mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML";
           document.getElementsByTagName("head")[0].appendChild(script);
     })();
</script>

 

 

 

 

4. 마크다운 전후로 "$$"을 써주면 마크다운을 쓸 수 있다.

 

수식 자리에 x^{2}를 넣으면 아래 처럼 출력된다.

$$ x^{2} $$