在新的章节标题后使用\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}
- 有没有方法(最好是自动的)来纠正这个问题?
- 是否应
\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}