用填充句点右对齐数字

用填充句点右对齐数字

我如何在 LaTex 中复制这个?

在此处输入图片描述

答案1

我不确定问题是什么,但假设你不知道如何放置这些点,这里有一种方法

\documentclass{scrartcl}

\begin{document}

what you come out with:
\begin{center}
  Average wage of employees \makebox[3cm]{\dotfill} $\$\,2.200$
\end{center}

Or did you just mean something like

Average wage of employees \dotfill\ $\$\,2.200$

\end{document}

答案2

tabular如果你喜欢过度杀伤,这里有一个解决方案:

\documentclass{article}
\usepackage{array}
\usepackage{showframe}   %% just for demo
\begin{document}

what you come out with:

\noindent
\begin{tabular}{p{0.15\textwidth}p{\dimexpr0.85\textwidth-3\tabcolsep\relax}@{}}
  & Average wage of employees \dotfill $\$\,2.200$
\end{tabular}

\end{document}

在此处输入图片描述

但你也可以\hspace*{1in}在前面加上 Manuel 的解决Average方案

\hspace*{1in} Average.......

因此这个tabular解决方案就显得有些过度了。

相关内容