在 Lyx 中,如何减少/增加案例环境中的垂直距离?

在 Lyx 中,如何减少/增加案例环境中的垂直距离?

我读了一些相关文章,但我仍然无法控制环境中的垂直距离cases。我正在使用 Lyx。

例如,我想减少案件两条线之间的垂直距离

在此处输入图片描述

我从 Latex Preview 复制了代码

\[
x_{ij}^{k}=
\begin{cases}
1, & \textrm{if vehicle \ensuremath{k} travels from \ensuremath{i} to \ensuremath{j}}\\
0, & \textrm{otherwise}
\end{cases}
\]

答案1

我提出两种可能性:

– 要么将方程式嵌套在singlespace环境中,要么使用cases*环境来mathtools简化代码(&自动进入文本模式后),

– 或者加载empheq包(加载包mathtools,加载包)并在 的位置amsmath使用同名环境。align*cases

\documentclass{article}
\usepackage{empheq}
\usepackage{setspace}

\begin{document}

\doublespacing

Blahblahblah

\begin{singlespace}
\[ x_{ij}^{k}=\begin{cases*}
1, & if vehicle \ensuremath{k} travels from \ensuremath{i} to \ensuremath{j} \\
0, & otherwise
\end{cases*}\]
\end{singlespace}

\begin{empheq}[left={ x_{ij}^{k}=\empheqlbrace}]{align*}
1, & \quad\textrm{if vehicle \ensuremath{k} travels from \ensuremath{i} to \ensuremath{j}} \\[-2ex]
0, & \quad\textrm{otherwise}
\end{empheq}

\end{document} 

在此处输入图片描述

相关内容