延长脚注上方的线条

延长脚注上方的线条

默认情况下,页脚开始处绘制的线条较小。如何将其放大并与文档文本区域大小匹配?

答案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}

相关内容