我的论文风格指南规定通篇使用双倍行距,如果标题上方有文本,则在节或小节标题上方使用两个双倍行距,但如果上方有另一个标题,则使用正常的双倍行距。
我甚至不知道从哪里开始,但这里是我目前所拥有的 MWE。
\documentclass{amsbook}
\usepackage{titlesec}
\usepackage[doublespacing]{setspace}
\usepackage{lipsum}
\titleformat{\chapter}[display]
{\normalfont\normalsize\centering}{\chaptertitlename\ \thechapter}{0pt}{\normalsize}
\titleformat{\section}
{\normalfont\normalsize\centering}{\thesection}{1em}{}
\titleformat{\subsection}
{\normalfont\normalsize\centering}{\thesubsection}{1em}{}
\titlespacing{\chapter} {0pt}{.5in}{0pt}
\titlespacing{\section} {0pt}{0pt}{0pt}
\titlespacing{\subsection} {0pt}{0pt}{0pt}
\begin{document}
\chapter{Introduction}
\section{Test}
\subsection{More}
\lipsum[1]
Want two double spaces below this line.
\subsection{test}
\lipsum[2]
\end{document}