我的问题涉及文档类别中目录的定位turabian-thesis
。
正在输入此 MWE...
\documentclass{turabian-thesis}
\usepackage[margin=1in]{geometry}
\usepackage{lipsum}
\setcounter{tocdepth}{3}
\begin{document}
\frontmatter
\newpage
\tableofcontents
\newpage
\section{First section}
\lipsum[1-7]
\subsection{First subsection}
\lipsum[8-12]
\subsection{First subsection}
\lipsum[13-20]
\section{Second section}
\lipsum[21-44]
\end{document}
...生成此目录页面(尽管为了透视目的,我手动在屏幕截图中添加了黑色边框):
问题:在turabian-thesis
文档类中,目录左侧的边距很大。为什么会发生这种情况?我该如何减小已经很大的左边距?具体来说,我希望目录左侧和顶部的边距为 1 英寸,这样它看起来就可以像其他目录一样。
答案1
我稍微修改了一下你的源代码,希望你能理解你问的问题。希望它能正常工作。
\documentclass{turabian-thesis}
\usepackage{geometry}
\geometry{
inner=37.125mm,
outer=33.4125mm,
top=37.125mm,
bottom=37.125mm,
heightrounded,
marginparwidth=51pt,
marginparsep=17pt,
headsep=24pt,
}
\usepackage{tocloft}
\renewcommand{\cfttoctitlefont}{\Large\bfseries}
\usepackage{lipsum}
\setcounter{tocdepth}{3}
\begin{document}
\frontmatter
\newpage
\tableofcontents
\newpage
\section{First section}
\lipsum[1-7]
\subsection{First subsection}
\lipsum[8-12]
\subsection{First subsection}
\lipsum[13-20]
\section{Second section}
\lipsum[21-44]
\end{document}