Categories
WordPress

MathJax 로 워드프레스 (WordPress) 에서 수학 수식 출력하기

1. header.php 파일 열기

워드프레스의 대시보드 (Dashboard) 페이지를 연다.

왼쪽 메뉴에서 “Appearance” 를 선택한다.

“Theme Editor” 를 선택한다.

오른쪽에 있는 “Theme Files” 목록에서 “Theme Header” 를 클릭하여 header.php 파일을 연다.

2. header.php 파일 편집

header.php 파일에서 </head> 태그를 찾는다.

이 태그 앞에 다음 코드를 입력한다.

<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script type="text/javascript" id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js"></script>

“Update File” 을 클릭하여 파일을 저장한다.

3. MathJax 로 수식 (數式) 출력하기

워드프레스 편집기에서 다음과 같은 TeX 코드를 입력한다.

\(a \ne 0\)

\(ax^2 + bx + c = 0\)

$x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$

문서를 저장하고 미리보기로 출력 결과를 확인한다.

Leave a Reply

Your email address will not be published. Required fields are marked *