每页都有相同的脚注

每页都有相同的脚注

图形化展示我的问题我想在文档的每一页上写相同的脚注。脚注是“每日脚注”。我怎样才能在每一页上打印相同的脚注?

答案1

喜欢彼得·范·奥斯特鲁姆评论里说,你可以试试

\documentclass{article}
\usepackage{lipsum}
\usepackage{fancyhdr}
\pagestyle{fancy}
\thispagestyle{fancy}
\renewcommand{\headrulewidth}{0pt} % Default \headrulewidth is 0.4pt
\renewcommand{\footrulewidth}{0.4pt} % Default \footrulewidth is 0pt

% center of footer
\cfoot{\thepage}

% LE: left of even pages
% LO: left of odd pages
\fancyfoot[LE,LO]{\footnotesize{`Footnote of the day'}}

\begin{document}
\lipsum[1-6]
\end{document} 

相关内容