tufte-latex:\newthought 之后 \section

tufte-latex:\newthought 之后 \section

在新的章节标题后使用\newthought会插入不寻常的垂直空间,如下例所示。

\documentclass{tufte-book}
\usepackage{kantlipsum,cleveref}


\begin{document}

\section{Monday}
\kant[1]

\section{Tuesday}
\newthought{Let us suppose} that the noumena have nothing to do with necessity,
since knowledge of the Categories is a posteriori. 
\kant[3]

\end{document}

在此处输入图片描述

  1. 有没有方法(最好是自动的)来纠正这个问题?
  2. 是否应\newthought避免在章节标题后使用,可能是由于排版原因?如果答案是肯定的,我将非常感激您的解释为什么

答案1

的定义\tuftebreak可以改进:

\documentclass{tufte-book}
\usepackage{kantlipsum,cleveref}

\makeatletter
\def\tuftebreak{%
  \if@nobreak\else
    \par
    \ifdim\lastskip<\tufteskipamount
      \removelastskip \penalty -100
      \tufteskip
    \fi
  \fi
}
\makeatother

\begin{document}

\section{Monday}
\kant[1]

\section{Tuesday}
\newthought{Let us suppose} that the noumena have nothing to do with necessity,
since knowledge of the Categories is a posteriori.
\kant[3]

\end{document}

在此处输入图片描述

相关内容