答案1
答案2
传统的输出cases
看起来不错,但也可以这样做,tikz
并nicematrix
灵活地调整括号的粗细以满足您的喜好。
\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
答案4
在Elsevier的双栏模板中,cas-dc
documentclass加载了stix
包,导致了你的问题。如果你写入\PassOptionsToPackage{nomath}{stix}
源代码的第一行,这个效果就会消失。