使用 mathjax 显示数学分数

lea*_*ner 4 math

我在 ckeditor 中使用 mathjax,我想打印分数。那么,我必须编写什么命令来打印下面链接中提到的分数?(这是图片:tinypic.com/r/23k465g/9

这是我正在尝试的:

<html>
<head>
<script type="text/javascript" async
  src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>

<title> mathsjax</title>
</head>
<body>
$$7\(frac\({4}{3}\)\)$$
</body>
</html>
Run Code Online (Sandbox Code Playgroud)

但它不起作用。所以,请给我建议一个解决方案

Dr.*_*ann 7

$$7\frac{4}{3}$$
Run Code Online (Sandbox Code Playgroud)

或在文本行中

$7\dfrac{4}{3}$
Run Code Online (Sandbox Code Playgroud)

请注意,\(...\)定义了文本行数学环境,即在 LaTeX 中相当于$...$.