方程組編號

方程組編號

如何將一個數字加到以下方程組中,以便第一個方程式採用數字 (1.a),第二個方程式採用數字 (1.b)?

\begin{equation}
\left\{
\begin{array}{l}
\begin{aligned}
x_k & = f_d(x_{k-1},u_{k-1},\theta) + q_{k-1}\\
y_k & = h(x_k,\theta,k) + r_k 
\end{aligned}
\end{array}
\right.
\label{eq:State}
\end{equation}

答案1

使用empheq設計您的方程組,並subequations實現您的編號目標:

在此輸入影像描述

\documentclass{article}

\usepackage{empheq,etoolbox}
% Update display of subequation numbering (Xy) > (X.y)
\patchcmd{\subequations}% <cmd>
  {\theparentequation\alph{equation}}% <search>
  {\theparentequation.\alph{equation}}% <replace>
  {}{}% <success><failure>

\begin{document}

\begin{subequations}
  \begin{empheq}[left=\empheqlbrace]{align}
    x_k &= f_d(x_{k-1},u_{k-1},\theta) + q_{k-1} \\
    y_k &= h(x_k,\theta,k) + r_k 
  \end{empheq}
\end{subequations}

\end{document}

預設編號subequations採用 (Xy) 形式。這etoolbox在序言中套用補丁,將所有 的值變更為 (Xy) subequations

相關內容