如何垂直对齐下划线?

如何垂直对齐下划线?

如何垂直对齐下方的数字(\underset或其他)?

在此处输入图片描述

\documentclass{beamer}
\usepackage{amsmath}
\begin{document}

\begin{equation}
\underset{1}{x}=\underset{1}{p_{A|B}}
\end{equation}

\end{document}

更新:这应该放入表格中,但stackunder似乎效果不太好:

在此处输入图片描述

答案1

使用 longstack (stacktype L)。已编辑使用\normalbaselineskip而不是\baselineskip,以便它可以出现在 中tabular(如果需要)。

\documentclass{beamer}
\usepackage{stackengine}
\def\stacktype{L}
\setstackgap{L}{.7\normalbaselineskip}
\stackMath
\begin{document}
\begin{equation}
\stackunder{x}{\scriptstyle1}=\stackunder{p_{A|B}}{\scriptstyle1}
\end{equation}
\begin{tabular}{cc}
\stackunder{x}{\scriptstyle1}=\stackunder{p_{A|B}}{\scriptstyle1}
&
\stackunder{x}{\scriptstyle1}=\stackunder{p_{A|B}}{\scriptstyle1}
\end{tabular}
\end{document}

在此处输入图片描述

答案2

这是一个使用以下方法的好时机\vphantom

在此处输入图片描述

\documentclass{beamer}
\usepackage{amsmath}
\begin{document}

\begin{equation}
  \underset{1}{x} = \underset{1}{p_{A|B}}
\end{equation}

\begin{equation}
  \underset{1}{\vphantom{p_{A|B}}x} = \underset{1}{p_{A|B}}
\end{equation}

\end{document}

相关内容