“聚集”环境中的虚假空白方程线

“聚集”环境中的虚假空白方程线

我有以下代码:

\begin{gather}
 u(x,t) = 0 \ \mathrm{ si\ } x = 0,  x = 1\\
\label{ex1bc}
\\
u(x,0) = \left\{
       \begin{array}{ll}
     2x,      & \mathrm{si\ } 0 \le x \le 1/2 \\
     2(1-x) & \mathrm{si\ } 1/2 \le x \le 1 \\
       \end{array}
     \right.
   \label{ex1inicial}
\end{gather}

得出的结果为:

A

我想得到这个,但没有空白方程 2.23。我做错了什么?

答案1

\\第一个等式后面有一个多余的伪代码。删除它,多余的行就会消失。

对于第二个等式,请考虑使用cases环境;首先,左边的花括号会更大一些。

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath} % for 'cases' env. and `\text` macro
\numberwithin{equation}{section} % just for this example
\setcounter{section}{2}          % just for this example
\setcounter{equation}{21}
\begin{document}
\begin{gather}
u(x,t) = 0 \text{ si } x = 0,  x = 1 \label{ex1bc}\\
u(x,0) = \begin{cases}
            2x     & \text{si } 0   \le x \le 1/2 \\
            2(1-x) & \text{si } 1/2 \le x \le 1 \\
         \end{cases} \label{ex1inicial}
\end{gather}
\end{document}

答案2

加载amsmath

\begin{document}
\begin{equation}
u(x,t) = 0 \text{ si } x = 0,  x = 1\label{ex1bc}
\end{equation}
\begin{equation}
u(x,0)=\begin{cases}
x,      & \text{si  $0 \le x \le 1/2$}, \\
2(1-x),  & \text{si  $1/2 \le x \le 1$.} \\
\end{cases}
\end{equation}
\end{document}

在此处输入图片描述

相关内容