在MathJax中对齐宏中的Tex

时间:2016-09-12 16:50:52

标签: javascript mathjax

我在MathJax中编写了一个宏,它可以转换\ begin {align *}环境中\intertext的任何实例转换为

\\
\text{Text goes here}
\\

上面的文字与左边对齐。写这个的原因是因为我正在处理的网站不支持\intertext命令。现在我在MathJax中的宏看起来如下:

{
intertext: ['\\\\\begin{array}{ccc}\\text{#1}\&\&\\end{array}\\\',1]
}

我试图将它与左边对齐。但是,LaTex命令\left不受支持,我尝试使用displayAlign as used here,但它没有用。

现在我正在使用this website as a Sandbox to test out code,但是当我在主网站上试用它时,它无法正常渲染,如下图所示:

在不使用\text\begin{align*}\left的情况下,还有其他选项可以在\intertext环境中左对齐displayAlign吗?

对于那些感兴趣的人,我最初发布了这个问题here.

编辑:我添加了一张我试图渲染的文字图片。

1 个答案:

答案 0 :(得分:0)

这是对齐的例子

\begin{split}
g_y(t) &= \frac{d}{dt}\ln\Bigl(A(t) f\bigl( x(t) \bigr) \Bigr)
\\
&=
\frac{d}{dt}\ln\Bigl(A(t)\Bigr) + \frac{d}{dt}\ln\Bigl( f\bigl( x(t) \bigr) \Bigr)
\\
&=
g_A(t) + \frac{\dot f\bigl( x(t) \bigr)}{f\bigl( x(t) \bigr)}
\\
&=
g_A(t) + \frac{\sum_{i=1}^n f_i\bigl(x(t)\bigr)\dot x_i(t)}{f\bigl( x(t) \bigr)} \qquad\text{(Chain Rule)}
\\
&=
g_A(t) + \sum_{i=1}^n \frac{f_i\bigl(x(t)\bigr)x_i(t)}{f\bigl( x(t) \bigr)}\frac{\dot x_i(t)}{x_i(t)}
\\
&=
g_A(t) + \sum_{i=1}^n \theta_i(t) g_{x_i}(t),
\end{split}

这是MathJax的结果

enter image description here