答案1
这些tufte
类提供了用于自定义边距材料的命令。它们是:
\setsidenotefont{}
\setcaptionfont{}
\setmarginnotefont{}
\setcitationfont{}
因此,在您的情况下,您需要使用前两个命令,但如果您独立使用该caption
包,那么最好使用它的命令来制作字幕。
\documentclass[marginals=auto]{tufte-book}
\usepackage{lipsum}
\setsidenotefont{\sffamily}
\setcaptionfont{\sffamily}
\begin{document}
\chapter{A chapter}
\lipsum[1]\sidenote{\lipsum[2]}\lipsum[3]
\begin{marginfigure}\caption{A caption}
\end{marginfigure}
\end{document}