Latex:为什么下一页的底部边距不合适?

Latex:为什么下一页的底部边距不合适?

为什么无论我在几何包或 .cls 文件中做什么,我的底部边距都不会以适当的大小改变?下一页的页脚

我希望页脚在下一页而不是在纸张的边界上。有人能帮助我吗?提前谢谢了。这是第一页的页脚

在此处输入图片描述

这是我在 .tex 文件中使用的包

\usepackage[margin=1.5cm, includeheadfoot, showframe]{geometry}

这是我在 .cls 文件中写的关于页眉和页脚的内容

\RequirePackage{fancyhdr}
\fancypagestyle{firstpage}{%
\fancyhf{} % clear all six fields
\rhead{{\large \textbf\@journalname} \\Vol. \@vol,~No. \@no,~\@months~\@years, Hal. 
\@pagefirst \textendash \@pagelast \\ \@eissn}
\cfoot{\thepage}
\renewcommand{\headrulewidth}{0.7pt}
}

\RequirePackage{fancyhdr}
\fancypagestyle{followingpage}{%
\fancyhf{} % clear all six fields
\rhead{JURNAL VARIAN \lvert \@eissn}
\lhead{\thepage \hspace{0.5em} \lvert \@firstauthor}
\lfoot{Vol. \@vol,~No. \@no, \@months~\@years, Hal.  \@pagefirst \textendash \@pagelast\\
DOI: \@DOI}
\renewcommand{\headrulewidth}{0.7pt}
\renewcommand{\footrulewidth}{0.7pt}
}
\pagestyle{followingpage}
\AtBeginDocument{\label{FirstPage}}
\AtBeginDocument{\thispagestyle{firstpage}}

相关内容