在公式编号右侧添加括号

在公式编号右侧添加括号

我使用以下内容:

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation} \label{eq:solve}
x^2 - 5 x + 6 = 0
\end{equation}

\begin{equation}
x_1 = \frac{5 + \sqrt{25 - 4 \times 6}}{2} = 3
\end{equation}

\begin{equation}
x_2 = \frac{5 - \sqrt{25 - 4 \times 6}}{2} = 2
\end{equation}
\end{document}

显示:

在此处输入图片描述

如何在公式编号右侧添加带有文本的括号?如下所示:

在此处输入图片描述

答案1

这是一种方法:

\documentclass{article}
\usepackage{mathtools}
\begin{document}
\[
\begin{drcases*}
\begin{minipage}{0.7\textwidth}
\begin{equation} \label{eq:solve}
x^2 - 5 x + 6 = 0
\end{equation}    
\begin{equation}
x_1 = \frac{5 + \sqrt{25 - 4 \times 6}}{2} = 3
\end{equation}
% don't leave blank line    
\begin{equation}
x_2 = \frac{5 - \sqrt{25 - 4 \times 6}}{2} = 2
\end{equation}
\end{minipage}
\end{drcases*}
\text{bla bla bla}
\]
\end{document}

在此处输入图片描述

相关内容