我怎样才能将图片放在侧栏中?

我怎样才能将图片放在侧栏中?

我有一个日记的标准模板,并使用几何技术将文本移到左侧。

\documentclass[a4paper,11pt,DIV=calc]{scrartcl}
\usepackage[left=2cm, right=5cm, top=2.5cm, bottom=2.5cm]{geometry}

现在我想将图片作为浮动元素放置在文本旁边的右侧。我考虑过两列布局,但第二列也会有文本。理想的解决方案是类似于SIGCHI 扩展摘要模板,但我的 LaTeX 技能还不够好,无法在我的文档中添加类似的行为。

你能告诉我哪些数据包负责或者需要哪些数据包才能实现这个功能吗?

答案1

可以作为起点的一个非常简化的 MWE 如下:

在此处输入图片描述

\documentclass[a4paper,11pt,DIV=calc]{scrartcl}
\usepackage{graphicx}
\usepackage{sidenotes}
\usepackage{lipsum}
\begin{document}

\lipsum[1]

\begin{marginfigure}
\includegraphics[width=\linewidth]{example-image}
\caption{This is a marginfigure with a caption}
\end{marginfigure}

\lipsum[1]

\end{document}

相关内容