Ajuda com alinhamento horizontal

Ajuda com alinhamento horizontal

Você pode me ajudar a mover o texto para mais perto da esquerda, como:

insira a descrição da imagem aqui

\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}

Obrigado,

Responder1

Aqui está uma possibilidade que não 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}

insira a descrição da imagem aqui

Responder2

Aqui está seu código atualizado:

\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}

insira a descrição da imagem aqui

Responder3

E quanto a isso, parece ainda melhor.

\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}

insira a descrição da imagem aqui

Responder4

Você poderia usar um ambiente alinhado à esquerda tabularpara atingir seu objetivo. (A linha ao longo da borda esquerda da captura de tela a seguir serve para ilustrar a borda do bloco de texto.)

insira a descrição da imagem aqui

Aliás, não creio que seja realmente necessário colocar os trechos explicativos do texto em itálico. Para renderizar o material na fonte de texto vertical, basta remover a \eminstrução no código abaixo e substituir \textitpor \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}

informação relacionada