tufte-book 图*与 floatrow 断开

tufte-book 图*与 floatrow 断开

我想在与班级一起准备的文档中加入一个全宽图形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 年以来就不再维护。

输出

相关内容