设置章节标题的边距(大学课程文件导致问题?)

设置章节标题的边距(大学课程文件导致问题?)

这只是我的第二份大型 LaTex 文档,所以我仍在学习。如果这是重复的,我很抱歉,但我尝试过从各种问题中应用不同的解决方案,但我仍然需要帮助来克服类文件似乎为章节标题设置的边距。他们让我做的最后一个修正是将这个标题变成一个倒金字塔。理想情况下是这样的:

分析时空分布

独特的荧光纳米粒子

异种移植肿瘤

在下面的 MWE 中,你会看到我尝试强制换行,但它不想在顶行上放更多单词(即使它应该有空间)。Chicago.clo 和 uuthesis2e.cls 可以在这里找到(ftp.math.utah.edu/pub/uuthesis/new-2016-05-03/sample-thesis-0/

\documentclass[11pt,Chicago]{uuthesis2e}
\usepackage{lipsum}


\usepackage[paperwidth=8.5in,paperheight=11in,margin=1.25in]{geometry}
% also tried this, but didn't work either
%\newenvironment{changemargin}[2]{%
%       \begin{list}{}{%
%               \setlength{\topsep}{0pt}%
%               \setlength{\leftmargin}{#1}%
%               \setlength{\rightmargin}{#2}%
%               \setlength{\listparindent}{\parindent}%
%               \setlength{\itemindent}{\parindent}%
%               \setlength{\parsep}{\parskip}%
%           }%
%           \item[]}{\end{list}}

\begin{document}



\newgeometry{left=1cm,right=1cm}
%\begin{changemargin}{-3em}{-3em}

\chapter[Analyzing spatiotemporal distribution of uniquely fluorescent nanoparticles in xenograft tumors]{Analyzing spatiotemporal distribution of\\ uniquely fluorescent nanoparticles\\ in xenograft tumors}\label{chap3}




\noindent \lipsum[1]

\restoregeometry
%\end{changemargin}

\end{document}

如果我需要修改类文件,我可能需要一些帮助来了解它在哪里定义章节标题的边距。我对它了解不够深入,还没有找到它。

答案1

找到了类文件中限制章节标题宽度的部分。据我所知,不建议更改类文件,但这是最后的手段 ;)

我变了

\def\mainheadingwidth{4.5in}

\def\mainheadingwidth{5.4in} %minimum needed to get "distribution" on the top line

并得到了论文办公室想要的倒金字塔形状的标题,并且不需要使用几何包更改任何边距。

以下是符合我要求的新 MWE:

\documentclass[11pt,Chicago]{uuthesis2e}
\usepackage{lipsum}

\begin{document}

\chapter{Analyzing spatiotemporal distribution of uniquely fluorescent nanoparticles in xenograft tumors}

\noindent \lipsum[1]

\end{document}

相关内容