調整目錄某些頁面的邊距

調整目錄某些頁面的邊距

我的大學要求目錄第一頁的頂部邊距為 2 英寸,後續頁面的頂部邊距為 1 英寸。本節中的所有其餘頁面均應有 2 英吋的頁邊距。

目前我有

\begin{doublespace}
\chapter*{ABSTRACT}
\addcontentsline{toc}{chapter}{ABSTRACT}
\@abstract

%\chapter*{DEDICATION}
%\addcontentsline{toc}{chapter}{DEDICATION} 

%\@dedication

%% Print everything in the glossary.
\glsaddall
\printglossary[title={LIST OF ABBREVIATIONS AND SYMBOLS}]
\glsresetall

%\chapter*{ACKNOWLEDGMENTS}
%\addcontentsline{toc}{chapter}{ACKNOWLEDGMENTS}


%\@acknowledgments

\tableofcontents


\listoftables 
\addcontentsline{toc}{chapter}{LIST OF TABLES} 

\listoffigures
\addcontentsline{toc}{chapter}{LIST OF FIGURES} 
\end{doublespace}
\restoregeometry

我一直在嘗試\afterpage{\newgeometry{top=1in}}在 之前放置一些其他標籤\tableofcontents,但是我似乎無法弄清楚。我是 LaTeX 的新手,並嘗試閱讀一些相關問題,但沒有運氣。

相關內容