在问题环境中的部分后划出第二行

在问题环境中的部分后划出第二行

我需要能够在下图中红线的位置放置第二行来写答案。但我无法开始\hrulefill工作。它就是画不出线!我希望它从当前缩进到右边距之前。

这是我在环境中针对此部分的代码\question

\part[2]
Calculate the mean.\hrulefill \\
\hrulefill

答案1

在两个\hrulefills 之间留一个间隙(一个空行):

在此处输入图片描述

\documentclass{article}

\newcommand{\points}[1]{\makebox[0pt][l]{\makebox[2em][r]{(#1)}}}

\begin{document}

\begin{enumerate}
  \item
  Calculate the mean. \hrulefill \points{2}

  \hrulefill

  \item
  Calculate the median. \hrulefill \points{2}

  \hrulefill

\end{enumerate}

\end{document}

答案2

使用\hrule而不是\hrulefill

相关内容