728x90
MathJax는 웹 브라우저에 수학 표기법을 표시하기 위한 JS Library이며 아래와 같은 형식을 따른다.
\(-{1 \over {500}}x + 212\)
프론트엔드에서 위 MathJax 수식을 올바르게 보여주기 위해 아래 과정이 필요하다.
1. nuxt.config.js의 head에 스크립트 코드 추가
// Global page headers: https://go.nuxtjs.dev/config-head
head: {
( ... )
script: [
{
src: 'https://polyfill.io/v3/polyfill.min.js?features=es6',
type: 'text/javascript',
body: true
},
{
src: 'https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js',
type: 'text/javascript',
body: true
}
]
},
2. 프론트 페이지의 mounted에 아래 코드 추가
async mounted() {
// mathjax 수식 렌더링 적용
if (window.MathJax) {
window.MathJax.typeset();
}
}
그러면 아래와 같은 html 요소가 있을 때 수식이 제대로 보여지게 된다.
<p v-html="math_exp"></p>
data() {
return {
math_exp : "<div class="math"> <p>The graph of \(y = 3x - 5\) in the \(xy\)-plane is a line. What is the slope of the line?</p></div>"
}
'Web Develop > Frameworks and Libraries' 카테고리의 다른 글
[Nuxt / Node.js] Error occurred while trying to proxy request 날 시에 (0) | 2023.09.19 |
---|---|
[Vue.js] drag로 요소의 순서 변경하기 (0) | 2023.08.18 |
[NodeJS] node-oracle 라이브러리 연동법 (0) | 2023.03.03 |
[Nuxt.js] 여러개의 체크박스에서 하나만 체크되게 하는 법 (0) | 2023.01.16 |
[React] cannot find eslint-plugin-react 에러로 시작 안될 때 (0) | 2023.01.12 |