Fancyhdr 在首頁上不起作用

Fancyhdr 在首頁上不起作用

Fancyhdr 似乎無法在我的文件的第一頁上運作。

我的序言:

\pdfminorversion=7 %For the inclusion of pdfs
\documentclass[11pt]{amsart}

% Packages
\usepackage{amssymb, amsmath, dsfont, mathtools, pgfplots} % Math symbols
\usepackage{fullpage, graphicx} % Formatting
\usepackage{hyperref} % Clickable links
\usepackage{enumitem} % Enumerate options   
\usepackage{xcolor} % For the colours
\usepackage{thmtools} % Changing the QED symbol, etc.
\usepackage{caption, subcaption} % Captioning of tables and such
\usepackage{tikz-cd} % tikz
\usetikzlibrary{calc,patterns,angles} % tikz add-ons
\usepackage{float}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{fancyhdr}


\usepgfplotslibrary{external}
\tikzexternalize
\tikzset{external/force remake}
\pgfplotsset{compat=1.15}

% Formatting
\linespread{1.1}
\frenchspacing
\hypersetup{colorlinks=true, urlcolor=purple, citecolor=blue, linkcolor=red, pdfstartview={XYZ null null 0.90}}

\pagenumbering{arabic}

\begin{document}

\pagestyle{fancy} % Page style
\fancyhead{}
\renewcommand{\headrulewidth}{0pt} % no line on top of page
\renewcommand{\footruleskip}{20pt}

然而,第一頁碼看起來像這樣

在此輸入影像描述

其餘的像這樣(我想要的):

在此輸入影像描述

由於某種原因,它僅在第一頁上較小

答案1

在 中amsart\maketitle\thispagestyle{firstpage}使用\scriptsize頁碼。

您可以重新定義firstpagestyleusingfancyhdr或 use \thispagestyle{fancy}after\maketitle或 if usingamsart提交到 AMS,只需使用樣式選擇即可。

相關內容