Tufte 类别和边距

Tufte 类别和边距

我最近开始熟悉 tufte 文档类,我非常喜欢它的风格;唯一令人困扰的是侧边距的使用,尽管我明白这正是 tufte 类所著称的。

有没有办法让边距与 tufte 类的样式完全相同?或者也许只有当我想在其中写点什么(比如脚注)时,边距才会出现。

我非常喜欢这种风格,所以我真的很想使用它。如果你建议使用其他课程,请告诉我我可以使用哪一个!

答案1

您可以在 tufte 类中编写全宽段落,方法是将它们括在以下内容中:

\begin{fullwidth}
Lorem ipsum dolor sit amet...
\end{fullwidth}

粗略的例子:

\documentclass[nohyper,titlepage,nols]{tufte-book}

\usepackage{lipsum}

\begin{document}
\begin{fullwidth}
\section{Section}
\lipsum[1]

\begin{figure}
    \includegraphics{test.jpg}
    \caption[test]{Test}
    \label{fig:test}
\end{figure}

\lipsum[2]

\section{Section}

\lipsum[3]

\end{fullwidth}

\lipsum[1]
Body with note\sidenote{Classic sidenote here}
\lipsum[2]

\begin{fullwidth}

\lipsum[3]
\section{Section}

\lipsum[4]

\end{fullwidth}
\end{document}

相关内容