我想在与班级一起准备的文档中加入一个全宽图形tufte-book
。
我发现使用该floatrow
包以及使用setkeys
选项graphicx
会破坏tufte-book
figure*
浮动。
平均能量损失
\documentclass{tufte-book}
\usepackage{floatrow}
\usepackage{graphicx}
\setkeys{Gin}{width=\linewidth,totalheight=\textheight,keepaspectratio}
\begin{document}
Here is a figure that I would like to be fullwidth.
\begin{figure*}
\includegraphics{example-image-a}
\end{figure*}
\end{document}
答案1
它对我而言既适用于 pdf latex 也适用于 lualatex
\documentclass{tufte-book}
\usepackage{floatrow}
\usepackage{graphicx}
\setkeys{Gin}{width=\textwidth+\marginparsep+\marginparwidth,totalheight=\textheight,keepaspectratio}
\usepackage{kantlipsum}
\begin{document}
Here is a figure that I would like to be fullwidth.
\begin{figure*}
\includegraphics{example-image-a}
\end{figure*}
\kant[1]
\end{document}
它并不能解决冲突,而是一种变通方法。tufte 类自 2015 年以来就不再维护。