在多个页面底部添加相同的文本

在多个页面底部添加相同的文本

我正在撰写论文,大学要求在致谢部分的所有页面的底部添加以下免责声明。

致谢仅代表作者的观点,并不代表委员会成员或大学的认可。

我尝试添加以下内容:

\let\thefootnote\relax\footnote{Acknowledgments reflect the views of the author and are not endorsed by committee members or the university.}

但这并不能保留本节所有页面的页脚。

有没有什么办法可以为某个特定部分保留这样的连续记录?

答案1

尝试这个:

\documentclass{article}

\usepackage{fancyhdr}
\pagestyle{fancy}

\fancyhf{} 
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{1pt}

\lfoot{\thepage}
%\rfoot{\vspace{-.8cm}\Footer\\vspace{.24cm}
\footnotesize Acknowledgments reflect the views of the author and are not endorsed by committee members or the university.

\begin{document}
\end{document}

相关内容