我正在制作一篇文章文档,想在某些页面(页面顶部和底部)添加双面边框。但\hrule
在这些页面上不起作用\chapter
。请帮忙。
答案1
您可以调整此解决方案以满足您的需要:
\documentclass{book}
\usepackage{lipsum}
\usepackage{fancyhdr}
\fancyhf{}
\cfoot{\thepage}
\renewcommand{\headrulewidth}{2.0mm}
\renewcommand{\footrulewidth}{2.0mm}
\begin{document}
% Bordered pages start here
\chapter{This Chapter with Top and Bottom Borders}
\thispagestyle{fancy}
\pagestyle{fancy}
\section{Bordered Pages}
\lipsum[1-10]
\clearpage
% Un-bordered pages start here
\pagestyle{plain}
\section{Un-Bordered Pages}
\lipsum[11-20]
\clearpage
% Bordered pages start here
\pagestyle{fancy}
\section{Bordered Pages Again}
\lipsum[21-30]
\end{document}