几何包无法更改文章文档中的边距

几何包无法更改文章文档中的边距

我正在使用article文档类,并且想缩小边距。

\documentclass{article}

\usepackage{enumitem,amssymb}
\usepackage{amsmath}
\usepackage[margin=50mm]{geometry}

\begin{document}

\everymath{\displaystyle}

\section{Trigonometric and hyperbolic equations}
\begin{itemize}
  \item \( 1 + \tan^2 x = \sec^2 x , \quad 1 + \cot^2 x = \csc^2 x \)
\end{itemize}
\end{document}

编译后的 pdf。请注意顶部、左侧和右侧的边距非常宽。

问题:

  1. 如何正确缩小article文档中的边距?
  2. 到底为什么会article产生这么大的丑陋边距?原因和逻辑是什么?

相关内容