没有支架的案例环境

没有支架的案例环境

我想将一个方程式与两个方程式垂直对齐,类似于cases环境但没有括号:例如类似于环境:

带牙套

必须有另一种对齐解决方案,例如不带花括号的案例公式- 我想将其标记为一个单一方程式。

答案1

无需创建特殊的环境;简单的array环境就可以完成工作。

在此处输入图片描述

\documentclass{article}
\begin{document}
\[
y = mx_{ij}\  
\begin{array}{l}
i = 1,2,\dots,n\\
j = 1,2,\dots,n
\end{array}
\]
\end{document}

为了使其成为编号equation环境,只需分别用\[和替换和\]即可。\begin{equation}\end{equation}

答案2

\documentclass[preview,border=12pt]{standalone}% change it back to your own document class
\usepackage{mathtools}
\begin{document}
\abovedisplayskip=0pt\relax% don't use this line in your code.
\begin{equation}
y=mx_{ij}
\quad
\!
\begin{aligned}
i &= 1,2,\ldots,n\\
j &= 1,2,\ldots,n
\end{aligned}
\end{equation}
\end{document}

在此处输入图片描述

答案3

您可以使用可选参数调整两条线之间的间隙\stackanchor,当前设置为 12pt。我使用了一些~~水平偏移。

\documentclass{article}
\usepackage{stackengine}
\begin{document}
\begin{equation}
y = mx_{ij} ~~\ensurestackMath{\stackanchor[12pt]{i = 1,2,\ldots,n}
  {j = 1,2,\ldots,n}}
\end{equation}
\end{document}

在此处输入图片描述

相关内容