删除一页上的页眉

删除一页上的页眉

我使用 moderncv 创建我的简历。我使用 includepdf 命令在其中包含一个 pdf 文档。问题是我定义了一个 fancyheader,并且这个 header 也在包含的 pdf 上,但我并不需要这个。

我将页面样式命名为 myfancy 并使用以下命令使用它:

\pagestyle{myfancy}

然后我的页面会跟随我想要的带有页眉的文档的位置。然后我通过以下方式包含 pdf:

\includepdf{Test.pdf}

然后我有标题,但是我不想有这个标题。

根据不同的帖子我尝试

\pagestyle{plain} 
\fancyhf{}
\thispagestyle{empty}

但一切都不起作用,标题仍然存在。我的错误在哪里?

答案1

你可以pagecommand这样使用:

\includepdf[pages=1-6,pagecommand={\thispagestyle{empty}}]{pgfmanual.pdf}

更改适当的样式(plainempty)。

梅威瑟:

\documentclass{article}
\usepackage{kantlipsum}
\usepackage{pdfpages}
\usepackage{fancyhdr}
\fancyhf{}
\renewcommand{\headrulewidth}{1pt}    %% made thick for visibility
\pagestyle{fancy}
\chead{My header}
\lfoot{\emph{My footer}}
\rfoot{\thepage}

\begin{document}
\tableofcontents
\chapter{A chapter}
\section{Introduction}
\kant[1-4]
\includepdf[pages=1-6,pagecommand={\thispagestyle{empty}}]{pgfmanual.pdf}
\section{Another section}
\kant[5-8]
\end{document}

MWE 具有modercv

\documentclass[11pt,a4paper,sans]{moderncv}        
\usepackage{pdfpages}

\moderncvstyle{casual}                             % style options are 'casual' (default), 'classic', 'oldstyle' and 'banking'
\moderncvcolor{blue}                               % color options 'blue' (default), 'orange', 'green', 

\usepackage[scale=0.75]{geometry}

\name{John}{Doe}
\title{Curriculum Vitae}                             % optional, remove / comment the line if not wanted
\address{street and number}{postcode city}{country}
\phone[mobile]{+1~(234)~567~890}                   
\phone[fixed]{+2~(345)~678~901}
\phone[fax]{+3~(456)~789~012}
\email{[email protected]}                               % optional, remove / comment the line if not wanted
\homepage{www.johndoe.com}                         % optional, remove / comment the line if not wanted
\social[linkedin]{john.doe}                        % optional, remove / comment the line if not wanted
\social[twitter]{jdoe}                             % optional, remove / comment the line if not wanted
\social[github]{jdoe}                              % optional, remove / comment the line if not wanted
\extrainfo{additional information}                 % optional, remove / comment the line if not wanted
\photo[64pt][0.4pt]{picture}                       
\quote{Some quote}                                 % optional, remove / comment the line if not wanted


%----------------------------------------------------------------------------------
%            content
%----------------------------------------------------------------------------------
\begin{document}
%-----       resume       ---------------------------------------------------------
\makecvtitle

\section{Education}
\cventry{year--year}{Degree}{Institution}{City}{\textit{Grade}}{Description}  % arguments 3 to 6 can be left empty
\cventry{year--year}{Degree}{Institution}{City}{\textit{Grade}}{Description}

\section{Master thesis}
\cvitem{title}{\emph{Title}}
\cvitem{supervisors}{Supervisors}
\cvitem{description}{Short thesis abstract}

\includepdf[pages=1-6,pagecommand={\thispagestyle{empty}}]{pgfmanual.pdf}

\end{document}

在此处输入图片描述

相关内容