
Können Sie mir helfen, den Text weiter nach links zu verschieben, etwa:
\documentclass[11pt,fleqn]{book}
\usepackage{amsmath,amsfonts,amssymb,amsthm}
\begin{document}
\noindent
where
\begin{flalign*}
&\Delta f_{res} & - & \mbox{\emph{lock time in microseconds}}&&\\
&\mathcal{L} & - & \mbox{\emph{is the loop bandwidth in kHz, and}}&&\\
&f_{m} & - & \frac{Frequency~Tolerance}{Frequency~Jump}&&
\end{flalign*}
\end{document}
Danke,
Antwort1
Hier ist eine Möglichkeit, die keinen Missbrauch darstellt flalign
:
\documentclass{book}
\usepackage{amsmath,siunitx}
\begin{document}
\noindent
where
\[
\makebox[\displaywidth][l]{$\displaystyle
\begin{array}{@{} l l @{}}
\Delta f_{\mathrm{res}} & \mbox{---\quad \emph{lock time in microseconds,}} \\
\mathcal{L} & \mbox{---\quad \emph{loop bandwidth in \si{kHz}, and}} \\
f_{m} & \mbox{---\quad}\dfrac{\text{\emph{Frequency Tolerance}}}
{\text{\emph{Frequency Jump}}.}
\end{array}
$}
\]
\end{document}
Antwort2
Hier ist Ihr aktualisierter Code:
\documentclass[11pt,fleqn]{book}
\usepackage{amsmath,amsfonts,amssymb,amsthm}
\begin{document}
\noindent
where
\begin{flalign*}
&\Delta f_{res} & \hspace{-1.6cm} - & \mbox{\emph{lock time in microseconds}}&&\\
&\mathcal{L} & \hspace{-2.1cm} - & \mbox{\emph{is the loop bandwidth in kHz, and}}&&\\
&f_{m} & \hspace{-2cm} - & \frac{Frequency~Tolerance}{Frequency~Jump}&&
\end{flalign*}
\end{document}
Antwort3
Wie wär’s damit, das sieht noch besser aus.
\documentclass[11pt,fleqn]{book}
\usepackage{amsmath,amsfonts,amssymb,amsthm}
\begin{document}
\noindent
where
\begin{flalign*}
&\Delta f_{res} & \hspace{-1.6cm}{:~} & \mbox{\emph{lock time in microseconds}}&&\\
&\mathcal{L} & \hspace{-2.1cm}{:~} & \mbox{\emph{is the loop bandwidth in kHz, and}}&&\\
&f_{m} & \hspace{-2cm}{:~} & \frac{Frequency~Tolerance}{Frequency~Jump}&&
\end{flalign*}
\end{document}
Antwort4
Sie könnten eine linksbündige tabular
Umgebung verwenden, um Ihr Ziel zu erreichen. (Die Linie am linken Rand des folgenden Screenshots dient dazu, den Rand des Textblocks darzustellen.)
Ich halte es übrigens nicht für wirklich notwendig, die erklärenden Textschnipsel kursiv darzustellen. Um den Text in der Hochformatschrift darzustellen, entferne einfach die \em
Anweisung im untenstehenden Code und ersetze sie \textit
durch \textrm
.
\documentclass[11pt,fleqn]{book}
\usepackage{amsmath,array}
\usepackage{showframe}
\newcolumntype{L}{>{$}l<{$} }
\begin{document}
\noindent \dots
\noindent where\\[1ex]
\noindent
\begin{tabular}{@{} L @{\quad---\quad} >{\em}l}
\Delta f_{\textit{res}} & lock time in microseconds,\\
\mathcal{L} & loop bandwidth in kHz, and\\[0.5ex]
f_{m} & $\dfrac{\textit{Frequency Tolerance}}{\textit{Frequency Jump}}$\\
\end{tabular}
\end{document}