对包含三个方程式的表格进行编号并用等号将其居中给我带来了很多麻烦

对包含三个方程式的表格进行编号并用等号将其居中给我带来了很多麻烦

我想重现这个图像(Latex.png 中的表格)。在此处输入图片描述

我正在使用 Texmaker。任何帮助都将不胜感激。我需要这个,因为我正在写一篇文章。我是 LaTeX 的中级学习者。如果为了简单起见,你只能在右边放一个数字,我不会介意。当然,我需要能够引用它。我知道这很多,但这对所有人来说都是一个很好的教训。

我提前感谢您的麻烦。

马里奥

答案1

通过使用casesmathtools,插入到minipages 中,正如我在评论中提到的那样:

\documentclass{article}
\usepackage{mathtools}

\begin{document}
\noindent%
\begin{minipage}{0.33\linewidth}
    \begin{equation}
        \begin{rcases}
         1   &   t>0 \\
        -1   &   t<0
        \end{rcases}
    \end{equation}
\end{minipage}%
\begin{minipage}{0.33\linewidth}
    \begin{equation}
        \begin{rcases}
         1   &   t>0 \\
        -1   &   t<0
        \end{rcases}
    \end{equation}
\end{minipage}%
\begin{minipage}{0.33\linewidth}
    \begin{equation}
        \begin{rcases}
         1   &   t>0 \\
        -1   &   t<0
        \end{rcases}
    \end{equation}
\end{minipage} 
\end{document}

在此处输入图片描述

答案2

假设您使用其中一个主要的 LaTeX 文档类,即,,,articlereportbook或者基于这些类之一的文档类,那么以下示例可能会引起您的兴趣。

在此处输入图片描述

\documentclass{article} % or some other suitable document class
\usepackage{amsmath}    % for 'aligned' env.
\usepackage{showframe}  % draw frame lines around text block

\begin{document}
\[
\left.
\begin{aligned}
  x &= r\cos\phi,\\
  y &= r\sin\phi,
\end{aligned}
\right\rbrace
\refstepcounter{equation}(\theequation)
\qquad
\left.
\begin{aligned}
  x &= r\cos\phi,\\
  y &= r\sin\phi,\\
  z &= z,
\end{aligned}
\right\rbrace
\refstepcounter{equation}(\theequation)
\qquad
\left.
\begin{aligned}
  x &= r\cos\theta,\\
  y &= r\sin\theta\cos\phi,\\
  z &= z\sin\theta\sin\phi.
\end{aligned}
\right\rbrace
\refstepcounter{equation}(\theequation)
\]

\end{document}

答案3

在此处输入图片描述

  1. 用于强调的右括号是在环境right=\empheqbigrbrace中获得的empheq
  2. 使用环境时,方程式可能会并排编号minipage。它由 LaTeX 本身提供,但更好的方法是使用adjustbox环境

代码

\documentclass{book}

\usepackage{adjustbox}
\usepackage{empheq}
    
\begin{document}

\begin{adjustbox}{minipage={\dimexpr 0.333\linewidth - 1em \relax}, valign=m}
    
    \begin{empheq}[right=\empheqbigrbrace]{equation}
        \begin{alignedat}{2}
            x &= r \cos\phi,
            \\
            y &= r \sin\phi,
        \end{alignedat}
    \end{empheq}
    
\end{adjustbox}%
\hspace{\fill}%
\begin{adjustbox}{minipage={\dimexpr 0.333\linewidth - 1em \relax}, valign=m}
    
    \begin{empheq}[right=\empheqbigrbrace]{equation}
        \begin{alignedat}{2}
            x &= r \cos\phi,
            \\
            y &= r \sin\phi,
            \\
            z &= z,
        \end{alignedat}
    \end{empheq}
    
\end{adjustbox}%
\hspace{\fill}%
\begin{adjustbox}{minipage={\dimexpr 0.333\linewidth - 1em \relax}, valign=m}
    
    \begin{empheq}[right=\empheqbigrbrace]{equation}
        \begin{alignedat}{2}
            x &= r \cos\theta,
            \\
            y &= r \sin\theta \cos\phi,
            \\
            z &= r \sin\theta \sin\phi.
        \end{alignedat}
    \end{empheq}
    
\end{adjustbox}
    
\end{document}

相关内容