如何使等式中的括号更加优雅?

如何使等式中的括号更加优雅?

我正在使用以下代码编写一个包含案例的方程:

\begin{equation}
\Delta A = 
\begin{cases}
    \frac{\pi \left( 1-\mu \right) d_i^2}{42GW_c} & \text{if } a = 0\\
        0                                  & \text{if } a = 1
    \end{cases}                                                                                                 
\end{equation}

它工作正常,但输出并不漂亮,我想让左括号变小,有人能告诉我如何处理吗?

在此处输入图片描述

答案1

也许得到的支架empheq会更像您想要的?

\documentclass{article}
\usepackage{empheq}

\begin{document}

\begin{empheq}[left={\Delta A =\empheqlbrace}]{equation}
  \begin{aligned}
      &\frac{\pi \left( 1-\mu \right) d_i^2}{42GW_c} & & \text{if } a = 0\\[1ex]
      & 0 & & \text{if } a = 1
  \end{aligned}
\end{empheq}

\end{document} 

在此处输入图片描述

答案2

在此处输入图片描述

传统的输出cases看起来不错,但也可以这样做,tikznicematrix灵活地调整括号的粗细以满足您的喜好。

\documentclass{amsart}
\usepackage{nicematrix}
\usepackage{tikz}

\usetikzlibrary{decorations.pathreplacing,calligraphy}

\tikzset{
    BraceMirrored/.style = {decorate,
        decoration={calligraphic brace, amplitude=2pt,
            pre =moveto, pre  length=1.1pt,
            post=moveto, post length=1.1pt,
            mirror,
            raise=#1},
        thick,
        pen colour=black},
        BraceMirrored/.default=0pt
}

\begin{document}

\begin{equation*}
    \everymath{\displaystyle}
        \Delta A = \mspace{11mu}
        \begin{NiceArray}{@{}l @{\quad}l}[cell-space-limits=1.1pt]
            \frac{\pi \left( 1-\mu \right) d_i^2}{42GW_c} & \text{if $a = 0$}
        \\
            0 & \text{if $a = 1$} 
            \CodeAfter
            {
                \begin{tikzpicture}
                    \draw[BraceMirrored={3.7pt}, thin] (1-1.north west) -- node[left=3.7pt] {} (2-1.south west); % change thickness by including `thin`, 'very thin', or 'ultra thin'
                \end{tikzpicture}
            }
        \end{NiceArray}
\end{equation*}

\end{document}

答案3

在此处输入图片描述

这就是您需要的吗?

\documentclass{extreport}
\usepackage{amsmath}


\begin{document}

\begin{equation}
\Delta A = 
\begin{cases}
    \dfrac{\pi \left( 1-\mu \right) d_i^2}{42GW_c} & \text{if } a = 0\\
        0                                  & \text{if } a = 1
    \end{cases}                                        
\end{equation}


\end{document}

答案4

在Elsevier的双栏模板中,cas-dcdocumentclass加载了stix包,导致了你的问题。如果你写入\PassOptionsToPackage{nomath}{stix}源代码的第一行,这个效果就会消失。

相关内容