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

AMS に送信するためにfirstpagestyleusingfancyhdrまたは use \thispagestyle{fancy}afterを再定義したり\maketitle、使用している場合はスタイルの選択に従ってそのまま使用したりできます。amsart

関連情報