如何为asciidoc中的mathjax表达式定义自定义宏?

时间:2018-07-23 08:05:28

标签: mathjax asciidoc

我想在我的asciidoc文档中重复使用一些数学表达式:

:stem: latexmath

[latexmath]
++++        
E^{\unicode{x2307}\unicode{x2307}\unicode{x2307}}       
++++

为了获得易于阅读的方程式,我想使用一个快捷方式,例如

:stem: latexmath

[latexmath]
++++        
E^{\myCustomSymbol}       
++++

:stem: latexmath

[latexmath]
++++        
E^{include::myCustomSymbol.ad}       
++++

=>如何在数学表达式或

中使用asciidoc导入

=>如何在asciidoc内定义mathjax宏(是否可以通过一些特殊命令修改mathjax配置)?

相关问题:

1 个答案:

答案 0 :(得分:2)

尝试

:stem: latexmath

[latexmath]
++++        
\newcommand{\myCustomSymbol}{{\unicode{x2307}\unicode{x2307}\unicode{x2307}}}
E^{\myCustomSymbol}       
++++

[latexmath]
++++
E^{\myCustomSymbol}       
++++

您只需要定义一次符号,然后就可以使用它。