在右边距添加图片

在右边距添加图片

我可以在右边距添加文本:

\marginpar{test}

但是我如何在右边距添加 image.png 呢?

答案1

sidenotes为此制作了一个包。这是一个例子。

\documentclass{article}

\usepackage{sidenotes} 
\usepackage{lipsum} % provides the dummy text
\usepackage{mwe} % provides the example image

\begin{document}
\lipsum[1]
\begin{marginfigure}%
    \includegraphics[width=\marginparwidth]{example-image-a}%
    \caption{This is in the margin.}%
\end{marginfigure}%
\lipsum[2]

\end{document}

输出:

边距图像

您可以使用软件包手册找到更多信息,或者\documentclass{caesar_book}如果您想从合理的边距宽度等开始,也可以使用。还有一个tufte-book类,我相信它memoir也提供了此功能。

相关内容