答案1
您可以使用aligned
来生成align
类似块,然后将条件放在它后面。我不太喜欢 的位置,
,所以建议您删除它,因为没有它才有意义。或者,可以使用rcases
环境(来自mathtools
), 也许。
\documentclass{article}
\usepackage{mathtools}
\begin{document}
\[
\begin{aligned}
f(x) &= \sin(x) \\
g(x) &= \cos(x)
\end{aligned}, \qquad x \in [0, 1]
\]
\[
\begin{rcases}
f(x) = \sin(x) \\
g(x) = \cos(x)
\end{rcases} \quad x \in [0, 1]
\]
\end{document}
答案2
empheq
使用包的另一种可能性
\documentclass{article}
\usepackage{empheq}
\begin{document}
\begin{empheq}[right={\empheqrbrace, \qquad x \in [0, 1]}]{align*}
f(x) &= \sin(x) \\
g(x) &= \cos(x)
\end{empheq}
\begin{empheq}[right={, \qquad x \in [0, 1]}]{align*}
f(x) &= \sin(x) \\
g(x) &= \cos(x)
\end{empheq}
\end{document}