部分后缩进章节

部分后缩进章节

我正在尝试缩进目录中某一部分后面的章节。我发现使用 Koma 脚本很容易,但我有一个强加的文档类。

这就是我想要做的: 不缩进参考书目或随后的结论

以下是部分代码:

\documentclass[twoside,11pt]{Latex/Classes/PhDthesisPSnPDF} 

\begin{document} 
\tableofcontents 
\listoffigures 
\listoftables 
\mainmatter 
\chapter{General introduction} 
\section{Noise sources in aero-engines} 
\section{Combustion noise} 
\subsection{Direct noise} 
\subsection{Indirect noise} 

\part{Towards a better understanding ...} 
\chapter*{Introduction} 
\addcontentsline{toc}{chapter}{Introduction} 
\chapter{The Entropy Wave Generator experiment} 
. 
. 
. 
\bibliographystyle{myplainnat} 
\bibliography{./biblio} 
\end{document}

确实,PhDthesisPSnPDF 是一个“内部制作的课程”,感谢您的帮助!

答案1

一个简单的方法是使用adjustwidth环境更改页面包裹

\documentclass[twoside,11pt]{PhDthesisPSnPDF} 

\usepackage{changepage}

\begin{document}
\tableofcontents 
\listoffigures 
\listoftables 
\mainmatter 
\chapter{General introduction}
\section{Noise sources in aero-engines}
\section{Combustion noise}
\subsection{Direct noise} 
\subsection{Indirect noise} 

\part{Towards a better understanding ...} 
\addtocontents{toc}{\protect\begin{adjustwidth}{2cm}{0cm}}% Begin

\chapter*{Introduction} 
\addcontentsline{toc}{chapter}{Introduction} 
\chapter{The Entropy Wave Generator experiment} . . . 

\addtocontents{toc}{\protect\end{adjustwidth}}%  End

\bibliographystyle{myplainnat} 
\bibliography{./biblio} 
\chapter{The Entropy Wave Generator experiment} 
\end{document} 

在此处输入图片描述

相关内容