多行文本框中的额外空行

多行文本框中的额外空行

如果我将一个放在环境multlinedcases,就会出现一个额外的空行。

\[
\begin{cases}
first row & aaa \\
second row & bbb \\
\begin{multlined}[b][10em]
third row part 1 \\
third row part 2 \\
third row part 3
\end{multlined}
& ccc \\
fourth row & ddd
\end{cases}
\]

在此处输入图片描述

该影响是稳定的,在我检查过的或其他类似环境中没有出现aligned,只有在cases。有没有非黑客的方法来克服这个问题?

答案1

使用dcases环境,因为您mathtools加载 multlined

\documentclass[]{article}
\usepackage{mathtools}

\begin{document}

\[
\begin{dcases}
first row & aaa \\
second row & bbb \\
\begin{multlined}[b][10em]
third row part 1 \\
third row part 2 \\
third row part 3
\end{multlined}
& ccc \\
fourth row & ddd
\end{dcases}
\]

\end{document} 

在此处输入图片描述

答案2

在此处输入图片描述

使用dcases(附带mathtools)而不是cases。此外,有一些错误只需通过加载包amsmath即可修复。mathtools

相关内容