我想删除fancyhdr
包含带有脚注的单个大图的浮动页面上的页眉(由包插入)。
我想保留相同的分页和内容流,即\clearpage
在图形前强制使用不是一个选项。我尝试了该afterpage
包并将我的浮点数包装在afterpage
环境中,但这失败了,并file not found
引发了一个奇怪的错误includegraphics
。
这是我的MWE
。浮动页面是第二页,需要从中删除标题行/规则。如能提供任何帮助,我将不胜感激。
\documentclass[a4paper]{book}
\newcommand{\mpfootnotes}[1][1]{
\renewcommand{\thempfootnote}{\thefootnote}
\addtocounter{footnote}{-#1}
\renewcommand{\footnote}{\stepcounter{footnote}\footnotetext[\value{footnote}]}}
\usepackage[demo]{graphicx}
\usepackage{lipsum}% debug only
\usepackage[paper=a4paper, hmarginratio=1:1, vmarginratio=1:1, scale=0.75]{geometry}
\usepackage{fancyhdr}
\newcommand{\setFancyHdr}{
\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{\markboth{\MakeUppercase{\thechapter. ##1 }}{}}
\renewcommand{\sectionmark}[1]{\markright{\thesection\ ##1}}
\fancyhf{}
\fancyhead[R]{{\bfseries\rightmark}}
\fancyfoot[C]{\thepage}
\fancypagestyle{plain}{
\fancyhead{}
\renewcommand{\headrulewidth}{0pt}
}
}
\setlength{\headheight}{14.5pt}
\setFancyHdr
\begin{document}
\chapter{First}
\section{First section}
\lipsum[1-2]
\begin{figure}[p] % the figure needs to occupy the entire page. Hence permitting only the 'p' modifier.
\begin{minipage}[t]{\textwidth}
\centering
\includegraphics[angle=90,width=\textwidth]{demo} % 'fig_master_flow_diagramPDF.pdf' is a huge figure and needs to stretch/shrink suitably to occupy the entire type-area available.
\caption
[%
Interesting caption
]%
{%
Interesting caption\footnotemark.
}%
\label{fig:fig_strategy_schematic}
\mpfootnotes[1]
\footnote{Some important footnote}
\end{minipage}
\end{figure}
\lipsum[1-10]
\end{document}