'amsmath' 选项 'tbtags' 在 beamer 中不起作用

'amsmath' 选项 'tbtags' 在 beamer 中不起作用

我想在 中使用多行方程tbtags选项。不幸的是,我无法让它工作。这是一个使用 可以工作但使用 不可以工作的最小示例。amsmathbeamerarticlebeamer

\documentclass[amsmath={tbtags}]{beamer}
\begin{document}
\begin{equation}
    \begin{split}
        M &= \text{first line} \\ &\qquad \text{second line}
    \end{split}
\end{equation}
\end{document}

我在文档中找不到任何内容beamer表明这不起作用。我做错了什么?

答案1

使用该noamsthm选项,beamer 不会amsmath默认加载,您可以使用任何您喜欢的选项来加载它。

\documentclass[noamsthm]{beamer}

\usepackage[tbtags]{amsmath}

\begin{document}
\begin{equation}
    \begin{split}
        M &= \text{first line} \\ &\qquad \text{second line}
    \end{split}
\end{equation}
\end{document}

在此处输入图片描述

答案2

你可以按如下方式正确书写 mwe:

\documentclass[tbtags]{beamer}

\begin{document}
\begin{frame}
\begin{equation}
    \begin{split}
        M &= \text{first line} \\ &\qquad \text{second line}
    \end{split}
\end{equation}
\end{frame}
\end{document}

在此处输入图片描述

相关内容