答案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}