使用 MathJax 进行双下标

使用 MathJax 进行双下标

我正在尝试按以下方式堆叠下标:

在此处输入图片描述

但是,我尝试在另一个 stackexchange 网站 (physics.stackexchange) 上执行此操作,该网站使用 MathJax(而不是 LaTeX)。我该怎么做?

答案1

您可以使用subarray,但在标准 LaTeX 中,如果您想使用右对齐,则必须补充其定义,因为默认情况下它只支持居中或左对齐。

\documentclass{article}
\usepackage{amsmath}

\makeatletter
\renewenvironment{subarray}[1]{%
  \vcenter\bgroup
  \Let@ \restore@math@cr \default@tag
  \baselineskip\fontdimen10 \scriptfont\tw@
  \advance\baselineskip\fontdimen12 \scriptfont\tw@
  \lineskip\thr@@\fontdimen8 \scriptfont\thr@@
  \lineskiplimit\lineskip
  \ialign\bgroup\ifx c#1\hfil\fi\ifx r#1\hfil\fi
    $\m@th\scriptstyle##$\ifx r#1\else\hfil\fi\crcr
}{%
  \crcr\egroup\egroup
}
\makeatother

\begin{document}

\begin{equation*}
\psi(x,t)|_{\begin{subarray}{r}x=0\\t=0\end{subarray}}=\psi(0,0)=0
\end{equation*}

\begin{equation*}
\psi(x,t)|_{\begin{subarray}{c}x=0\\t=0\end{subarray}}=\psi(0,0)=0
\end{equation*}

\begin{equation*}
\psi(x,t)|_{\begin{subarray}{l}x=0\\t=0\end{subarray}}=\psi(0,0)=0
\end{equation*}

\end{document}

在此处输入图片描述

另一方面,\begin{subarray}{r}MathJax 可以开箱即用。

在此处输入图片描述

相关内容