这应该是一个很容易的,但我还没有找到任何解决方案。
我需要在我的源代码中包含以下内容:
<script type="text/javascript" src="bower_components/MathJax/MathJax.js?config=AM_HTMLorMML-full"></script>
该./config/am_htmlormml.js
文件由 MathJax 加载以呈现用 ascii 编写的公式。代码运行良好,但我更喜欢使用 Bower。当我通过 bower 安装 MathJax 时,我得到:
<!-- build:js(.) scripts/vendor.js -->
<!-- bower:js -->
...
<script src="bower_components/MathJax/MathJax.js"></script>
...
<!-- endbower -->
<!-- endbuild -->
但我不确定如何最好地添加?config=AM_HTMLorMML-full1
,或确保./config/am_htmlormml.js
文件已加载。