如何修改特定頁面的頁首?

如何修改特定頁面的頁首?

我正在寫論文,在摘要頁面上,出現了標題「內容」。我想從該特定頁面中刪除標題。

答案1

如果您不想使用頁首或頁尾,請使用\pagestyle{empty}.該頁面之後將其設定回\pagestyle{fancy}或您想要的任何內容。

編輯:更好:如果您不想打開頁首或頁腳只有一頁使用\thispagestyle{empty}。該頁面之後會自動重置。

如果您想刪除頁首但保留頁腳,您可以定義自訂頁面樣式:

\usepackage{fancyhdr}

% ----- header & footer -----
\newcommand{\header}{
    \renewcommand{\headrulewidth}{.4pt}%
    \fancyhead{}
    \fancyhead[c]{CONTENT}
}
\newcommand{\footer}{
    \renewcommand{\footrulewidth}{.4pt}%
    \fancyfoot{}
    \fancyfoot[r]{page~\thepage}
}

\newcommand{\noheader}{
    \renewcommand{\headrulewidth}{0pt}%
    \fancyhead{}
}
\newcommand{\nofooter}{
    \renewcommand{\footrulewidth}{0pt}%
    \fancyfoot{}
}


% ----- pagestyles -----
% pagestyle fancy
\header
\footer

% custom pagestyle
\fancypagestyle{abstract}{%
    \noheader%
    \footer%
}

% ----- set default pagestyle -----
\pagestyle{fancy}

將自訂頁面樣式與\thispagestyle{abstract}.

相關內容