文字与图片

文字与图片

我尝试使用 LaTeX 创建财务报告,但不知道该怎么做。它应该看起来像附图。我已经用 LaTeX 创建了一些文档,所以我基本上知道它是如何工作的。

在此处输入图片描述

我第一次尝试的是marginnote包装。不知怎么的,它做到了,但数字不受任何控制地从边距中飘出。

我希望整个页面的边距最小,并且已通过几何包实现了这一点。重要的是,左侧要么有图片,要么有空闲空间,例如,图片 1 与文本 1 放在一起。

有没有什么方法可以不用付出巨大努力就能实现这一目标?

在此先感谢您的帮助。

答案1

也许这个paracol包对你来说很有趣。看这个例子:

\documentclass{article}
\usepackage{graphicx}
\usepackage{lipsum}
\usepackage[a4paper, margin=1cm]{geometry}
\usepackage{paracol}
\columnratio{0.3}
\begin{document}
\begin{paracol}{2}
  \begin{leftcolumn}
 \noindent
   \includegraphics[width=\linewidth]{example-image}
    \includegraphics[width=\linewidth]{example-image-a}
    \includegraphics[width=\linewidth]{example-image-b}
  \end{leftcolumn}
  \begin{rightcolumn}
    \lipsum[1-4]
  \end{rightcolumn}
\end{paracol}
\newpage
\begin{paracol}{2}
  \begin{leftcolumn}
 \noindent
   \includegraphics[width=\linewidth]{example-image}
  \end{leftcolumn}
  \begin{rightcolumn}
    \lipsum[5-8]
  \end{rightcolumn}
\end{paracol}

\end{document}

在此处输入图片描述

答案2

使用sidenotes按照建议打包这个答案

您的图片未顶部对齐,但仍与周围的文本位于同一页面上。

在此处输入图片描述

\documentclass{scrartcl}
    \usepackage{graphicx}
    \usepackage{sidenotes}
    \usepackage{kantlipsum}
    \usepackage[a4paper,left=25mm,textwidth=107mm,marginparsep=8.2mm,marginparwidth=49.4mm]{geometry} % tufte-handout definitions
\begin{document}
    \kant[1]
    \begin{marginfigure}%
        \includegraphics[width=\marginparwidth]{example-image-a}
    \end{marginfigure}
    \kant[2-3]
    \begin{marginfigure}%
        \includegraphics[width=\marginparwidth]{example-image-b}
    \end{marginfigure}
    \kant[4]
    \begin{marginfigure}%
        \includegraphics[width=\marginparwidth]{example-image-c}
        \includegraphics[width=\marginparwidth]{example-image-a}
    \end{marginfigure}
\end{document}

相关内容