两栏数字

两栏数字

我使用 overleaf。它有两列,我需要 6 个数字一个接一个地出现。第 1 列中有 2 个数字,第 2 列中有 4 个数字。

答案1

在双列文档中,左列有两个数字,右列有四个数字,这通常不是什么问题:

\documentclass[twocolumn]{article}

\usepackage{mwe}

\begin{document}
\section{Test}

An example with two figures in the first column.

\begin{figure}[htp]
  \includegraphics[width=\columnwidth]{example-image}
  \caption{First figure}
  \bigskip
  \includegraphics[width=\columnwidth]{example-image-a}
  \caption{Second figure}
\end{figure}

The second column has four figures.

\begin{figure}[htp]
  \includegraphics[width=\columnwidth,height=.17\textheight]{example-image-b}
  \caption{Third figure}
  \bigskip
  \includegraphics[width=\columnwidth,height=.17\textheight]{example-image-c}
  \caption{Fourth figure}
  \bigskip  
  \includegraphics[width=\columnwidth,height=.17\textheight]{example-image}
  \caption{Fifth figure}
  \bigskip
  \includegraphics[width=\columnwidth,height=.17\textheight]{example-image}
  \caption{Sixth figure}
\end{figure}

\blindtext

\end{document}

在此处输入图片描述

因此,如果您无法在左列中获取两张图片,在右列中获取四张图片,则必须展示您尝试过的方法。为此,您应该添加一个最小工作示例回答你的问题。

相关内容