我用它\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}
或者,也许\dotuline
从ulem
包中使用:
\documentclass{article}
\usepackage{ulem}
\begin{document}
Fill in:\dotfill\par
Fill in:\dotuline{\hfill}
\end{document}
\dotfill
以下是、\lowerdotfill
和的输出\dotuline
: