默认情况下,页脚开始处绘制的线条较小。如何将其放大并与文档文本区域大小匹配?
答案1
可以修改\footnoterule
命令:
\documentclass{book}
\usepackage{lipsum}
\makeatletter
\renewcommand\footnoterule{%
\kern-3\p@
\hrule\@width \textwidth
\kern2.6\p@}
\makeatother
\begin{document}
Test \footnote{test} \lipsum*[1]
\end{document}
答案2
有KOMA 脚本类,您可以使用\setfootnoterule[<height>]{<length>}
宏。
\documentclass{scrartcl}
\setfootnoterule[2pt]{\textwidth}% default height is 0.4pt
\begin{document}
Some text\footnote{A footnote.}.
\end{document}