将项目内容的顶行与项目编号垂直对齐

将项目内容的顶行与项目编号垂直对齐
\begin{enumerate}
    \item This looks good.
    \item
      $\begin{aligned}
        \mathrm{This} &= \mathrm{is} \\
                      &= \mathrm{not\ nicely\ aligned}
      \end{aligned}$
    \item \begin{tabular}{ccc}
            & Neither & is \\
       this & table.  &    \\
    \end{tabular}
\end{enumerate}

目前看起来是这样的:

在此处输入图片描述

但我希望它看起来像这样:

在此处输入图片描述

垂直对齐,以便...项目内容的顶行与项目编号对齐。

答案1

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{enumerate}
    \item This looks good.
    \item
      $\begin{aligned}[t]
        \mathrm{This} &= \mathrm{is} \\
                      &= \mathrm{not\ nicely\ aligned}
      \end{aligned}$
    \item \begin{tabular}[t]{ccc}
            & Neither & is \\
       this & table.  &    \\
    \end{tabular}
\end{enumerate}
\end{document}

在此处输入图片描述

相关内容