我知道使用\newgeometry{left=xcm,bottom=xcm}
和\restoregeometry
可以帮助设置新的边距,但我不知道应该把它放在哪里才能仅重置第二页(或第三页等)。这是 MWE:
\documentclass{article}
\usepackage{lipsum}
\begin{document}
\section{First section} \lipsum[1-4]
\section{Second section} \lipsum[5-8]
\section{Third section} \lipsum[9-12]
\section{Last section} \lipsum[13-14]
\end{document}
我的问题是:如何为不同的页面设置不同的边距?即
对于第一页: \geometry{top=1in,bottom=1in,left=1in,right=1in};
对于第二页: \geometry{top=2in,bottom=2in,left=2in,right=2in};
对于第三页: \geometry{top=3in,bottom=3in,left=3in,right=3in};