
¿Puedes ayudarme a acercar el texto a la izquierda como:
\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}
Gracias,
Respuesta1
He aquí una posibilidad que no abusa 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}
Respuesta2
Aquí está su código actualizado:
\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}
Respuesta3
¿Qué tal esto? Se ve aún mejor.
\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}
Respuesta4
Podría utilizar un tabular
entorno alineado a la izquierda para lograr su objetivo. (La línea a lo largo del borde izquierdo de la siguiente captura de pantalla está ahí para ilustrar el borde del bloque de texto).
Por cierto, no creo que sea realmente necesario poner los fragmentos de texto explicativo en cursiva. Para representar el material en la fuente de texto vertical, simplemente elimine la \em
instrucción en el código siguiente y reemplácela \textit
con \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}