수평 정렬 도움말

수평 정렬 도움말

다음과 같이 텍스트를 왼쪽으로 더 가깝게 이동하도록 도와주실 수 있나요?

여기에 이미지 설명을 입력하세요

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

감사해요,

답변1

남용되지 않는 가능성은 다음과 같습니다 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}

여기에 이미지 설명을 입력하세요

답변2

업데이트된 코드는 다음과 같습니다.

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

여기에 이미지 설명을 입력하세요

답변3

어떡하지, 이게 더 좋아 보이는데.

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

여기에 이미지 설명을 입력하세요

답변4

tabular목표를 달성하기 위해 왼쪽 정렬 환경을 사용할 수 있습니다 . (다음 스크린샷의 왼쪽 가장자리에 있는 선은 텍스트 블록의 가장자리를 설명하기 위한 것입니다.)

여기에 이미지 설명을 입력하세요

덧붙여서, 설명 텍스트 조각을 이탤릭체로 렌더링하는 것이 꼭 필요한 것은 아니라고 생각합니다. 자료를 수직 텍스트 글꼴로 렌더링하려면 \em아래 코드에서 명령을 제거하고 \textit로 바꾸면 됩니다 \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}

관련 정보