如何在左边距添加图形?

如何在左边距添加图形?

我发现了一篇关于在右边距添加图形的帖子,效果很好。

在右边距添加图片

但是,我不知道在左边距添加图形的命令。有人能帮忙吗?

答案1

以下是您给出的 mwe 的示例。重要的是\reversemarginpar

\documentclass{article}
\usepackage{xcolor}
\usepackage{marginnote}
\usepackage{sidenotes} 
\usepackage{lipsum} % provides the dummy text
\usepackage{mwe} % provides the example image
\reversemarginpar
\begin{document}
\lipsum[1]
\begin{marginfigure}%
\includegraphics[width=\marginparwidth]{example-image-a}%
\caption{This is in the margin.}%
\end{marginfigure}%
\lipsum[2]

\end{document}

\reversemarginpar您还可以使用和来回切换\normalmarginpar

\documentclass{article}
\usepackage{xcolor}
\usepackage{marginnote}
\usepackage{sidenotes} 
\usepackage{lipsum} % provides the dummy text
\usepackage{mwe} % provides the example image
\reversemarginpar
\begin{document}
\lipsum[1]
\begin{marginfigure}%
    \includegraphics[width=\marginparwidth]{example-image-a}%
    \caption{This is in the margin on the left.}%
\end{marginfigure}%
\normalmarginpar
\begin{marginfigure}
    \includegraphics[width=\marginparwidth]{example-image-a}
    \caption{This is in the margin on the right}
\end{marginfigure}
\lipsum[2]

\end{document}

相关内容