计算脚注和页眉的页边距

Make page margin count for footnotes and header as well

我正在使用以下页面几何结构:

\documentclass[12pt, a4paper]{report} % A4 paper and 12pt font size
\usepackage[a4paper, top=2.0cm, bottom=1.0cm, left=2.0cm, right=5.0cm, footskip = 1.0cm]{geometry}

我需要"white"页边距完全一样,意思是如果有脚注,脚注末尾和页尾之间的边距是1cm。除了页码之外,头部也同样重要。所以页面顶部和第一行文本之间的边距需要为 2cm。页码(顶部)最好位于 space 的中央。

不知何故,我目前的顶部是 2.4 厘米,底部不到 1。

提前致谢!

来自 geometry 软件包的手册(http://texdoc.net/texmf-dist/doc/latex/geometry/geometry.pdf,图 2 第 3 页):

If includehead is set to true, headheight and headsep are considered as a part of height. In the same way, includefoot takes footskip into height.

所以这个

\usepackage[a4paper, top=2.0cm, bottom=1.0cm, left=2.0cm, right=5.0cm, footskip = 1.0cm, includehead, includefoot]{geometry}

应该这样做吗?