728x90

 

"๋ฌธ์ž์—ด์˜ ์ด์Šค์ผ€์ดํ”„ ์‹œํ€€์Šค๊ฐ€ ์ž˜๋ชป๋จ" + Latex Escape Letter ์˜ค๋ฅ˜

$z = \mu + \epsilon\sigma$ 

 

๋ฐ”๋กœ Backslash๊ฐ€ JavaScript์˜ escape ๋ฌธ์ž๋กœ  Google Search Console ํฌ๋กค๋Ÿฌ๊ฐ€ \mu๋ฅผ ํ•จ์ˆ˜๋กœ ์ธ์‹ํ•ด ์ƒ๊ธฐ๋Š” ์˜ค๋ฅ˜์ด๋‹ค. 

์ฒ˜์Œ์— JavaScript๋ฅผ ์ž˜ ๋ชฐ๋ผ latex๋กœ ์“ฐ๊ณ  ์บก์ณํ•ด์„œ ํฌ์ŠคํŒ…ํ•˜๋‹ค. Escape ๋ฌธ์ž ํ•ด๊ฒฐ ๋ฐฉ๋ฒ•์„ ์ฐพ์•˜๋‹ค.

 

https://docs.mathjax.org/en/v2.1-latest/tex.html

 

MathJax TeX and LaTeX Support โ€” MathJax 2.1 documentation

The support for TeX and LaTeX in MathJax consists of two parts: the tex2jax preprocessor, and the TeX input processor. The first of these looks for mathematics within your web page (indicated by math delimiters like $$...$$) and marks the mathematics for l

docs.mathjax.org

<script type="text/x-mathjax-config">
MathJax.Hub.Config({
  tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]},
  displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
  processEscapes: true
});
</script>

๊ธฐ์กด์˜ JavaScript Latex ์ฝ”๋“œ์— processEscapes๋ฅผ ์ถ”๊ฐ€ํ•˜๋ฉด ๋œ๋‹ค.

 

 

๋ฐ˜์‘ํ˜•
๋‹คํ–ˆ๋‹ค