Wie kann ich diesen Text ausgerichtet schreiben?

Wie kann ich diesen Text ausgerichtet schreiben?

Ich versuche, eine Beamer-Präsentation zu erstellen und muss den folgenden Text schreiben. Ich möchte dieselbe Ausrichtung wie im Bild haben, bin mir aber nicht sicher, wie das geht. Ich habe versucht, zwei Spalten zu erstellen, aber das funktioniert nicht.

Ich möchte, dass die Gleichungen unabhängig von der Endposition des Textes auf der linken Seite an der gleichen Stelle beginnen.

Was ich brauche

Antwort1

Wie andere bereits erwähnt haben, lässt sich dies ganz einfach durch die Verwendung einer Tabelle wie dieser erreichen:

\documentclass{beamer}
\usepackage{lmodern}
\usepackage{amsmath}
\usefonttheme{professionalfonts}
\begin{document}

\begin{frame}
\renewcommand{\arraystretch}{1.2}
\begin{tabular}{@{}ll@{}}
\textbf{Predict}  &  \\
Predicted state estimate            & $\displaystyle\hat{\mathbf{x}}_{k-1|k-1}=f(\hat{\mathbf{x}}_{k|k-1},\mathbf{k}_{u-1})$ \\
Predicted covariance estimate       & $\displaystyle\hat{\mathbf{x}}_{k-1|k-1}=f(\hat{\mathbf{x}}_{k|k-1},\mathbf{k}_{u-1})$ \\[.5em]
\textbf{Update}   &  \\
Innovation or measurement residual  & $\displaystyle\hat{\mathbf{x}}_{k-1|k-1}=f(\hat{\mathbf{x}}_{k|k-1},\mathbf{k}_{u-1})$ \\
Innovation (or residual) covariance & $\displaystyle\hat{\mathbf{x}}_{k-1|k-1}=f(\hat{\mathbf{x}}_{k|k-1},\mathbf{k}_{u-1})$ \\
Near-optimal Kalman gain            & $\displaystyle\hat{\mathbf{x}}_{k-1|k-1}=f(\hat{\mathbf{x}}_{k|k-1},\mathbf{k}_{u-1})$ \\
Updated state estimate              & $\displaystyle\hat{\mathbf{x}}_{k-1|k-1}=f(\hat{\mathbf{x}}_{k|k-1},\mathbf{k}_{u-1})$ \\
Updated covariance estimate         & $\displaystyle\hat{\mathbf{x}}_{k-1|k-1}=f(\hat{\mathbf{x}}_{k|k-1},\mathbf{k}_{u-1})$ 
\end{tabular}
\end{frame}

\end{document}

Bildbeschreibung hier eingeben

Antwort2

Verwenden Sie eine einfache Tabelle:

\documentclass{article}
\usepackage{amsmath}
\usepackage{array}
\begin{document}
\subsection*{Update}
\noindent
\begin{tabular}{@{} p{7cm} >{$}l<{$} @{}}
Innovation or measurement residual & 
     \overline{\mathbf{y}}_k = \mathbf{Z}_k - h(\mathbf{\hat{x}}_{k|k-1}) \\[5pt]
Innovation (or residual) covariance &
     \mathbf{S}_k = \mathbf{H}_k \ldots
 \end{tabular}
\end{document}

Bildbeschreibung hier eingeben

verwandte Informationen