본문 바로가기

기타

티스토리에서 LATEX 수식 쓰는 방법

반응형

티스토리 기본설정으로는 수학기호 등의 수식을 쓰지 못합니다. 

LATEX 문법을 티스토리에서도 적용하기 위해서는 매스잭스(MathJax)라는 자바스크립트 라이브러리를 이용해야하는데요

 

매스잭스(MathJax)

:매스잭스(MathJax)는 MathML, LaTeX 및 ASCIIMathML 마크 업을 사용하여 웹 브라우저에 수학 표기법을 표시하는 크로스 브라우저 JavaScript 라이브러리이다.

ko.wikipedia.org/wiki/%EB%A7%A4%EC%8A%A4%EC%9E%AD%EC%8A%A4

 

매스잭스 - 위키백과, 우리 모두의 백과사전

위키백과, 우리 모두의 백과사전. 매스잭스(MathJax)는 MathML, LaTeX 및 ASCIIMathML 마크 업을 사용하여 웹 브라우저에 수학 표기법을 표시하는 크로스 브라우저 JavaScript 라이브러리이다.[2][3][4] MathJax는

ko.wikipedia.org

 


Step1.

아래의 코드를 복사합니다. 

<script type="text/x-mathjax-config"> MathJax.Hub.Config({ tex2jax: { inlineMath: [ ['$','$'], ["\\(","\\)"] ], processEscapes: true } });
</script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_CHTML'></script>

#위키백과에서도 코드를 확인할 수있는데 제가 해본 결과 잘 되지 않았습니다.

위의 코드는 stacktrace 님의 블로그에서 가져왔습니다. (글 하단에 블로그 주소 명시)

 

 

Step2.

블로그 관리 - 스킨 편집 - html 편집에 들어가서

head태그 내부 아무곳에다가 복사한 후 저장을 누르면 적용이 됩니다.

맨 아래 </body> 바로 위에 붙여넣었습니다.

 

 

 


Step3. 아래의 링크에서 함수작성 문법을 익히고 

블로그에 자유롭게 적용합니다.

www.latex-tutorial.com/tutorials/amsmath/

 

LaTeX math and equations

There are two major modes of typesetting math in LaTeX one is embedding the math directly into your text by encapsulating your formula in dollar signs and the other is using a predefined math environment. You can follow along and try the code in the sandbo

www.latex-tutorial.com

www.statpower.net/Content/310/R%20Stuff/SampleMarkdown.html

 

An Example R Markdown

Introduction This is an R Markdown document. By studying the document source code file, compiling it, and observing the result, side-by-side with the source, you’ll learn a lot about the R Markdown and LaTeX mathematical typesetting language, and you’l

www.statpower.net

$\sqrt{2}$

 

a의 b승은 $2^{a\times b}$ 입니다.

 

 

 

#레이텍 수식 정리 블로그

jjycjnmath.tistory.com/117

 

#참고한 블로그

https://privatedevelopnote.tistory.com/81

3months.tistory.com/307

 

 

 

반응형