使用 mtpro2 v. lite 的子方程环境的花括号

使用 mtpro2 v. lite 的子方程环境的花括号

记得用户@Mico 给出的非常好的回答,使用 mtpro2[lite] 的花括号:修复正确的对齐方式,它已被用于方程环境

\ccases{\begin{aligned}.....\end{aligned}}

(完整代码在此)

\documentclass{article}
\usepackage[lite]{mtpro2}
\usepackage{amsmath}

\begin{document}
\[
\ccases{
  \begin{aligned}
    x &= R\sin\theta\cos\varphi\\
    y &= R\sin\theta\sin\varphi\\
    z &= R\cos\theta
  \end{aligned}
}
\quad\text{vs.}\qquad
\begin{cases}
  \begin{aligned}
    x &= R\sin\theta\cos\varphi\\
    y &= R\sin\theta\sin\varphi\\
    z &= R\cos\theta
  \end{aligned}
\end{cases}
\]
\end{document}

有一个非常漂亮的花括号,如下图所示。

在此处输入图片描述

但是将环境运用subequation到这个 MWE 中,

\documentclass{article}
\usepackage[lite]{mtpro2}
\usepackage{mathtools,newtxtext}
\usepackage{empheq}
\begin{document}
\begin{subequations}
\ccases{\begin{aligned}
A &= B\\
C &= D\\
F &= G \\
H &= I
\end{aligned}
}
\end{subequations}

\end{document}

我没有获得花括号符号,因为我有这个警告:

未定义控制序列。l.7 \cccases {\begin{aligned}

如果我使用这个 MWE:

\documentclass{article}
\usepackage[lite]{mtpro2}
\usepackage{mathtools,newtxtext}
\usepackage{empheq}
\begin{document}
\begin{subequations}
\begin{empheq}[left=\empheqlbrace]{align}
A  &= C\\
F &= 0 \\
Ah &= ty\\
qw &= oo
\end{empheq}
\end{subequations}

\end{document}

代码编译正确,但我没有花括号,而是系统的经典括号:

在此处输入图片描述

我的问题有什么解决办法?

相关内容