多行一行接一行

多行一行接一行

可能重复:
LaTeX 能用来制作一张空白行纸吗?

我尝试创建水平线,以便学生练习册可以写答案。我不明白为什么以下命令不起作用。

\documentclass[b5paper,svgnames,11pt]{book}

\begin{document}
 \hrulefill{}  \\
 \hrulefill{}  \\
 \hrulefill{}  \\
 \hrulefill{}  \\
\end{document}

然后我这样写,一切都好了。

\documentclass[b5paper,svgnames,11pt]{book}

\begin{document}
 \phantom{.} \hrulefill{} \smallskip \\
 \phantom{.} \hrulefill{} \smallskip \\
 \phantom{.} \hrulefill{} \smallskip \\
 \phantom{.} \hrulefill{} \smallskip \\
\end{document}

但这并不能让我满足于一行一行地写几行简单的内容。

答案1

尝试添加\null

\documentclass[b5paper,svgnames,11pt]{book}
\begin{document}
    \noindent
    \null\hrulefill{}  \\
    \null\hrulefill{}  \\
    \null\hrulefill{}  \\
    \null\hrulefill{}  \\
\end{document}

给出:

线条

相关内容