eqnarray 中括号后的标签

eqnarray 中括号后的标签

在此处输入图片描述

请问如何为 LP 集合中的约束添加标签,例如 (3b)、(3c) 等?似乎添加后\right},标签功能就不再起作用了。

这就是我现在所拥有的:

\begin{subequations} \label{}
    \begin{eqnarray}
    && \zeta_{ij} = f_{ij}(x) \ ,\ i\in I, j \in J       \\
    &{\mathcal{LP}}:=&\left\{ %(x,y): \quad 
    \begin{array}{ll}
    h_i(x) \leq 0 \ ,\ i\in I        \\
    l_i \leq x_i \leq u_i \\ 
    y \in \mathbb R_+  \\ 
    x \in \mathbb R_+^2  \times \mathbb Z_+^3 \times \mathbb B^1   \;     
    \end{array}
    \right\} \notag 
    \end{eqnarray} 
\end{subequations}

答案1

像这样:

在此处输入图片描述

结合equationempheq数学环境:

\documentclass{article}
\usepackage{empheq}
\usepackage{amssymb}

\begin{document}
\begin{subequations} \label{eq:1}
    \begin{equation} \label{eq:a}
\zeta_{ij} = f_{ij}(x) \ ,\ i\in I, j \in J       
    \end{equation}
\begin{empheq}[left=L\mathcal{LP}{\colon=}\empheqlbrace,right=\empheqrbrace]{align}
    &   h_i(x) \leq 0 \ ,\ i\in I   \label{eq:b} \\
    &   l_i \leq x_i \leq u_i       \label{eq:c}\\
    &   y \in \mathbb R_+           \label{eq:d}\\
    &   x \in \mathbb R_+^2  \times \mathbb Z_+^3 \times \mathbb B^1
                                    \label{eq:e}
\end{empheq}
\end{subequations}
\end{document}

相关内容