我对标题有疑问。我想保留图片标题,但删除文本标题(小字内容)。
下面是代码:
\documentclass[11pt,a4paper,titlepage]{article}
\usepackage{lipsum}
\usepackage{graphicx}
\usepackage[a4paper,margin=1.0in]{geometry}
\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\setlength\headheight{80.0pt}
\addtolength{\textheight}{-80.0pt}
\chead{\includegraphics[width=\textwidth]{Header}}
\cfoot{\includegraphics[width=\textwidth]{Footer}}
\begin{document}
\title{\vspace{-30mm}\Huge Compressed Air}
\date{\Large ATLAS COPCO}
\maketitle
\tableofcontents
\thispagestyle{fancy}
\end{document}
答案1
通常最佳做法是先清除页眉和页脚,然后再使用
\fancyhf{} % Clear header/footer
否则,您尚未更新的定位页眉/页脚位置的文档元素仍可能对其产生影响。就您而言,您尚未清除 、 和 中包含的内容\lhead
。\rhead
上述\lfoot
宏\rfoot
是 和 的简写,可清除所有六个位置(包括\chead
和\cfoot
)。
因此,在加载后立即将上述内容添加到您的序言中fancyhdr
或者在开始设置fancy
页面样式时。