我用红色突出显示了我的问题。如您所见,突出显示的行以一个段落开头,但我不想这样。我该如何解决这个问题?
\[ F: M \times [0,T) \longrightarrow N \]
such that
\begin{align*} \begin{cases} \frac{\partial F}{\partial t} (p,t) &= H(p,t) \nu(p,t)\\
F(M,0) &= M,
\end{cases} \end{align*}
where $\nu(\cdot,t)$ is the unit normal to $F(\cdot,t)$ pointing
inward and $H(\cdot,t)$ its mean curvature.
提前致谢!
答案1
后面不要留空行align
。
% alignprob.tex SE 564034
\documentclass{article}
\usepackage{amsmath}
\begin{document}
Here's some text. Here's some text. Here's some text. Here's some text.
Here's some text. Here's some text. Here's some text. Here's some text.
Here's some text. Here's some text.
\begin{align}
x^2 + y^2 &= z^2 \\
x^3 + y^3 &< z^3
\end{align}
Here's some text. Here's some text. Here's some text. Here's some text.
Here's some text. Here's some text. Here's some text. Here's some text.
Here's some text. Here's some text.
\end{document}
由于您没有显示任何产生问题的代码,因此我只能提供一般性答案。
答案2
空行命令 TeX 开始新段落。因此,它们在数学显示中是不允许的(并且会产生错误)。
有一种更好的方法来隔离输入文本中的显示:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
F: M \times [0,T) \longrightarrow N
\]
such that
\[
\left\{
\begin{aligned}
&\frac{\partial F}{\partial t} (p,t) = H(p,t) \nu(p,t)\\
&F(M,0) = M,
\end{aligned}
\right.
\]
where $\nu(\cdot,t)$ is the unit normal to $F(\cdot,t)$ pointing
inward and $H(\cdot,t)$ its mean curvature.
\end{document}
请注意,我使用了\left\{
和\right.
而不是cases
,因为这会在其右侧添加一些不需要的空间。
此外,&
incases
用于引入条件,而不是对齐方程。aligned
在这种情况下,最好使用。你可以看到我放在&
开头,这提供了左对齐:没有理由对齐那些彼此无关的等号。也许在这种情况下特别的在这种情况下,人们可以努力对齐,但只是因为左侧恰好具有大致相同的宽度。如果第二行是F(0)=M
,对齐=
就会留下一个令人费解的漏洞。
与之比较
答案3
我会将两个方程分组并使用\shortintertext
以下方式:
\documentclass{article}
\usepackage{mathtools}
\usepackage{esdiff}
\usepackage{lipsum}
\begin{document}
\lipsum[4]
\begin{gather*}
F: M \times [0,T) \longrightarrow N \\
\shortintertext{such that}
\begin{cases}\begin{aligned}
\diffp{F}{t} (p,t) &= H(p,t) \nu(p,t)\\[1ex]
F(M,0) &= M,
\end{aligned} \end{cases}\\
\shortintertext{where $\nu(\cdot,t)$ is the unit normal to $F(\cdot,t)$ pointing inward and $H(\cdot,t)$ its mean curvature.\vskip-1.67\belowdisplayskip}
\end{gather*}
\lipsum[11]
\end{document}