我想将 6 和 7 与等式 8 和 9 对齐。我希望将其在等号处对齐。
我现在拥有的:
我使用下面的代码得到:
\begin{numcases}{O(t) =}
\textbf{W}^T S(t), & $\text{if } S(t) \in Signal$; \\
\textbf{0}, & \text{if } otherwise,
\end{numcases}
\begin{align}
CSM &= \pi_{1} (O(t)) \label{eq:pi1} \\[10pt]
K &= \pi_{2} (O(t)) \label{eq:pi2} \
\end{align}
我需要的:
答案1
以下仅提供一种选择:
\documentclass{article}
\usepackage{mathtools,cases,xparse,eqparbox}
% https://tex.stackexchange.com/a/34412/5764
\makeatletter
\NewDocumentCommand{\eqmathbox}{o O{c} m}{%
\IfValueTF{#1}
{\def\eqmathbox@##1##2{\eqmakebox[#1][#2]{$##1##2$}}}
{\def\eqmathbox@##1##2{\eqmakebox{$##1##2$}}}
\mathpalette\eqmathbox@{#3}
}
\newcommand{\startsubequations}{%
\refstepcounter{equation}%
\protected@xdef\theparentequation{\theequation}%
\global\let\theoldequation\theequation
\setcounter{parentequation}{\value{equation}}%
\setcounter{equation}{0}%
\gdef\theequation{\theparentequation\alph{equation}}%
}
\newcommand{\stopsubequations}{%
\protected@xdef\theequation{\theparentequation}%
\global\let\theequation\theoldequation
\setcounter{equation}{\value{parentequation}}%
}
\makeatother
\newcommand{\LBRACE}{
\left\lbrace\begin{array}{@{}c@{}}
\strut \\ \strut
\end{array}\right.\kern-\nulldelimiterspace
}
\begin{document}
\begin{numcases}{O(t) =}
\mathbf{W}^T S(t), & if $S(t) \in \text{Signal}$; \\
\mathbf{0}, & otherwise,
\end{numcases}
\begin{align}
CSM &= \pi_1 (O(t)) \\
K &= \pi_2 (O(t))
\end{align}
\noindent\hrulefill
\begin{align}
%\startsubequations % Start subequation numbering
& \hphantom{\LBRACE}\eqmathbox[nc][l]{\mathbf{W}^T S(t), \quad} \text{if $S(t) \in \text{Signal}$;} \\
\raisebox{.5\dimexpr\baselineskip+\jot}[0pt][0pt]{$O(t) ={}$} &
\raisebox{.5\dimexpr\baselineskip+\jot}[0pt][0pt]{$\LBRACE$}
\eqmathbox[nc][l]{\mathbf{0},} \text{otherwise,} \\
%\stopsubequations % Stop sub-equation numbering
CSM ={} & \pi_1 (O(t)) \\
K ={} & \pi_2 (O(t))
\end{align}
\end{document}
该方法numcases
通过在 中放置四个常规方程来伪造一个环境align
。前两个方程的分组是通过将左侧O(t) =
和左分隔符{
从第二个方程移动到位(垂直向上)来完成的。
一些盒子宽度的计算是使用eqparbox
针对不同的情况。
如果需要,可以更改左括号分组和条件与文本组件之间的间距。
...如果您想要对方程式进行编号,则可以使用 ConTeXt-esque 方法\startsubequations
... \stopsubequations
:
答案2
我可以用一个可怕的代码来调整虚假的长度,从而得到你想要的东西:
\documentclass{article}
\usepackage[showframe]{geometry}
\usepackage[table]{xcolor}
\usepackage{mathtools}
\usepackage{cases}
\begin{document}
\begin{align}%
O(t) &= {} \hspace*{-1.35cm}\makebox[0.3\linewidth]{\begin{subnumcases}{\hspace*{3.08cm}}
\textbf{W}^T S(t), & if $S(t) \in$ Signal; \\
\textbf{0}, & otherwise,
\end{subnumcases} }\notag
\\[1ex]
CSM &= \pi_{1} (O(t)) \label{eq:pi1}
\\[1ex]
K &= \pi_{2} (O(t)) \label{eq:pi2} \
\end{align}% \end{subequations}
\end{document}