答案1
通过使用cases
包mathtools
,插入到minipage
s 中,正如我在评论中提到的那样:
\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 文档类,即,,,article
或report
,book
或者基于这些类之一的文档类,那么以下示例可能会引起您的兴趣。
\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
- 用于强调的右括号是在环境
right=\empheqbigrbrace
中获得的empheq
- 使用环境时,方程式可能会并排编号
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}