Fancyhdr 页脚没有显示,如何修复?

Fancyhdr 页脚没有显示,如何修复?
\geometry{a4paper,top=0.5in,left=0.50in,bottom=0.55in,right=0.50in}
\usepackage{amsmath}
\usepackage{tabto}
\usepackage{fancyhdr}

\pagestyle{fancy}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\setlength{\headheight}{80pt}
\setlength{\footskip}{80pt}
\fancyhead[CO,CE]{\includegraphics[width=\textwidth]{header.png}}
\fancyfoot[LO,LE]{PRINT NAME: FirstName LastName}
\fancyfoot[CO,CE]{SIGNATURE: \includegraphics[height=30pt]{footer.png}}
\fancyfoot[RO,RE]{Date: \today}

答案1

基于您的代码的 MWE 为我编译并产生了我期望的输出。

\documentclass{article}
\usepackage{amsmath, tabto, fancyhdr, graphicx, geometry, blindtext}
\geometry{a4paper,top=0.5in,left=0.50in,bottom=0.55in,right=0.50in}

\pagestyle{fancy}

\fancyhead[CO,CE]{\includegraphics[height=30pt]{example-image-a}}
\fancyfoot[LO]{PRINT NAME: FirstName LastName}
\fancyfoot[CO,CE]{SIGNATURE: \includegraphics[height=30pt]{example-image-b.png}}
\fancyfoot[RO,RE]{Date: \today}

\begin{document}
\section{Test}
\blindtext[5]
\end{document}

在此处输入图片描述

相关内容