使用MathJax显示数学

时间:2017-09-14 02:01:59

标签: html mathjax

我正在尝试学习如何使用MathJax显示数学方程式。我从codepen调整了这个代码,这很好用:

    `<!DOCTYPE html>
<head>
    <script src='https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML'></script>
<style>
p {
    font-size: 22px;
}
</style>

</head><body>
<script type="text/x-mathjax-config">
  MathJax.Hub.Config({
    tex2jax: { inlineMath: [['$', '$']] },
    elements: ['math']
  });
</script>

<p id="math">
Find the value of: 
$\Huge{\frac {3.41 \times 10^3}{1.80 \times 10^2}}$
and enter the answer within the box.
</p>

`

然而,当我在那里添加一个段落并输入数学时,它不会显示为数学。它只显示文字。有什么建议?谢谢。

1 个答案:

答案 0 :(得分:1)

在MathJax配置的elements: ['math']数组中包含您的下一个段落ID。