带有图片的页面上的页眉消失

带有图片的页面上的页眉消失

我注意到,在图片占据整个页面的页面上,我的页眉(见下文的 MWE)没有显示。实际上,出现了一个“不相关的”页眉,即章节名称。此外,页码从底部移到了顶部。

任何能解决这个问题并使我的报告看起来更好的帮助都将不胜感激。

\documentclass[12pt]{report} 
\usepackage{makeidx}
\usepackage{graphicx} 
\usepackage{graphics} 
\usepackage{leqno}
\usepackage{amsmath} 
\usepackage{amsthm} 
\usepackage{amsfonts}
\usepackage{rotating} 
\usepackage{amssymb} 
\usepackage{subfig}
\usepackage{floatflt} 
\usepackage{rotating} 
\usepackage{framed}
\usepackage{float} 
\usepackage{multirow}
\usepackage{floatpag}
\usepackage[left=3cm,top=3cm,right=2.5cm,bottom=2.8cm]{geometry}
\usepackage[authoryear,round]{natbib}
\usepackage{fancyhdr}
\usepackage[font={small,it}]{caption}
\renewcommand{\baselinestretch}{2.0} \textwidth=37pc \textheight= 58pc
\oddsidemargin=4pc \evensidemargin=1pc \headsep=15pt
\parindent=1.7pc 
\parskip=0pt
\voffset = -25pt 
\setcounter{tocdepth}{4} 
\setcounter{secnumdepth}{4}
\setcounter{section}{0} 
\def\thesection{\arabic{section}}
\begin{document} 
\chapter{Introduction}\label{Introd.Chap}
\pagestyle{fancy} 
\fancyhf{} 
\rhead{Introduction} 
\lhead{Chapter
\ref{Introd.Chap}} 
\cfoot{\thepage}

\section{This shouldn't appear in the header} Some text \newpage

Some text \newpage

Some text \newpage

\begin{figure} \centering \includegraphics[scale=0.75]{mwe.eps}
\caption{Caption }\end{figure}

\end{document}

答案1

该图位于浮动页面上,即仅包含浮动元素的页面。您已添加包,floatpag其目的是能够为此类页面设置页面样式,默认情况下它将页面样式设置为headings,这就是您所看到的。因此,只需删除即可\usepackage{floatpag}

相关内容