奇怪的方程数组错误

奇怪的方程数组错误

当我使用以下代码生成一个简单的方程数组时:

\begin{equation}
f(x)=\left \{\begin{array}{ll}
\frac{\pi-x}{2},\quad 0<x\leqslant 2\pi;\\
-\frac{\pi}{2},\quad x \text{are other points}
\end{array}
\right.
\end{equation}

我得到了以下结果: 在此处输入图片描述

为什么数组有点重叠?代码有什么问题吗?

我知道我可以使用\nicefrac{}{}来改变第二行,但仍然很奇怪:

在此处输入图片描述

你们如何在数学模式下生成左边漂亮的括号?

谢谢。

答案1

使用 插入更大的换行符\\[<len>]。使用cases需要同样增加换行符。但是,使用dcases(来自mathtools)效果更好:

在此处输入图片描述

\documentclass{article}

\usepackage{mathtools,amssymb}

\begin{document}

\begin{equation}
  f(x) = \left \{\begin{array}{ll}
      \frac{\pi-x}{2},\quad 0<x\leqslant 2\pi;\\
      -\frac{\pi}{2},\quad x \text{are other points}
    \end{array}
  \right.
\end{equation}

\begin{equation}
  f(x) = \begin{cases}
     \dfrac{\pi-x}{2}, & 0 < x \leqslant 2\pi; \\[2\jot]
    -\dfrac {\pi} {2}, & \text{$x$ are other points}
  \end{cases}
\end{equation}

\begin{equation}
  f(x) = \begin{dcases}
     \frac{\pi-x}{2}, & 0 < x \leqslant 2\pi; \\
    -\frac {\pi} {2}, & \text{$x$ are other points}
  \end{dcases}
\end{equation}

\end{document}

相关内容