\dotfill 但略低于线

\dotfill 但略低于线

我用它\dotfill来创建“填空”的空间,但我不喜欢点正好在线上。我希望点稍微低于线。这可能吗?

\documentclass{article}
\begin{document}
Fill in:\dotfill
\end{document}

答案1

也许,您可以稍微改变一下\dotfill和点的定义:\lower

\documentclass{article}

\makeatletter
\def\lowerdotfill{%
  \leavevmode
  \cleaders \hb@xt@ .44em{\hss\lower0.5ex\hbox{.}\hss}\hfill
  \kern\z@}
\makeatother

\begin{document}
Fill in:\dotfill\par
Fill in:\lowerdotfill
\end{document}

或者,也许\dotulineulem包中使用:

\documentclass{article}
\usepackage{ulem}

\begin{document}
Fill in:\dotfill\par
Fill in:\dotuline{\hfill}
\end{document}

\dotfill以下是、\lowerdotfill和的输出\dotuline

在此处输入图片描述

相关内容