Wie kann ich zu folgendem Gleichungssystem eine Zahl addieren, so dass die erste Gleichung die Zahl (1.a) und die zweite (1.b) annimmt?
\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}
Antwort1
Verwendenempheq
um Ihren Gleichungssatz zu formatieren und subequations
Ihr Nummerierungsziel zu erreichen:
\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}
Die Standardnummerierung subequations
hat die Form (Xy). Dieetoolbox
Der Patch wird in der Präambel angewendet, um dies für alle in (Xy) zu ändern subequations
.