R shiny MathJax对齐问题

R shiny MathJax Alignment issue

我闪亮的应用程序中有几行方程式,我想用它们的等号对齐,但似乎无法使对齐功能正常工作。我的代码如下。

p("$$\begin{align}
     \ x^2 &=  \text{Chi-Squared}
      \ sum &= \text{summation}
      \ o &=  \text{the observed values}
      \ e &=  \text{the expected values}
      \end{align}$$")

虽然这不起作用,但我不知道如何正确对齐它们。任何帮助将不胜感激

您还没有终止比对行。您需要在每一行的末尾添加 \\(最后一行除外):

p("$$\begin{align}
     \ x^2 &=  \text{Chi-Squared} \\
     \ sum &= \text{summation} \\
     \ o &=  \text{the observed values} \\
     \ e &=  \text{the expected values}
     \end{align}$$")