我最近熟悉了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}