几列数字

几列数字

我在论文附件里加了一些图片,都是.jpg格式的。

对于我的工作来说,将两个图形并排放置并留出一点空间是有意义的,这样可以占用除边框之外的整个页面宽度。

有人能告诉我怎么做吗?我知道,我要求的很多,但我已经尝试了几种方法,但没有一种方法能给我想要的结果。

非常感谢您的帮助。

尤尔格

答案1

我使用了以下宏来达到相同目的。

\usepackage{graphicx}
\usepackage{xargs}

\newlength{\tmplength}
\newcommandx{\illustrations}[8][1=0.5, 2=htb]{%
    \setlength{\tmplength}{\textwidth}
    \addtolength{\tmplength}{-#1\textwidth}
    \begin{figure}[#2]
        \tabcolsep = 0pt
        \begin{tabular}{p{#1\textwidth}p{\tmplength}}
            \centering \includegraphics{pictures/#4} & \centering \includegraphics{pictures/#7} \tabularnewline
            \centering \captionof{figure}{\label{#3}#5} & \centering \captionof{figure}{\label{#6}#8}
        \end{tabular}%
    \end{figure}%
}

用法如下:

\illustrations
    [<part of page for the first picture>]
    [<position of figure>]
    {<label of the first picture>}
    {<filename of the first picture>}
    {<caption text for the first picture>}
    {<label of the second picture>}
    {<filename of the second picture>}
    {<caption text for the second picture>}

但是我的所有图片都在“图片”子目录中。如果您有其他路径,您可以在宏中修复它。您还可以添加缩放图片的参数。

相关内容