私は最近、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}