如何在两列之间展开表格

如何在两列之间展开表格

我读过这些帖子:

  1. 单列文档中的多页两列表格
  2. 处理很长的表格-分成几列?

但仍然无法解决我的问题。您能帮我将表格分布在两列页面的两列之间吗?例如:

在此处输入图片描述

谢谢。

答案1

这是一个使用固定的选项\captionof{table}{<caption>}(来自caption或者capt-of)并提供从一列到下一列的表格条目的手动拆分:

在此处输入图片描述

\documentclass[twocolumn]{article}
\usepackage{lipsum,caption,graphicx,tabularx}
\begin{document}
\lipsum[1-5]

\begin{figure*}[ht]
  \centering
  \includegraphics[width=.5\linewidth]{example-image}
  \caption{Some really interesting picture.}
\end{figure*}

\begin{enumerate}
  \item \lipsum[1]
  \item \lipsum[2]
\end{enumerate}

\begin{center}
\captionof{table}{The Vulnerable Assets}
\end{center}

\noindent
\begin{tabularx}{\linewidth}{l|X}
  \hline
  \textbf{No.} & \textbf{Item and Description} \\
  \hline
  VA1 & \lipsum*[2] \\
  \hline
\end{tabularx}

\noindent
\begin{tabularx}{\linewidth}{l|X}
  \hline
  \textbf{No.} & \textbf{Item and Description} \\
  \hline
  VA2 & \lipsum*[4] \\
  \hline
  VA3 & \lipsum*[4] \\
  \hline
\end{tabularx}

\lipsum[3]
\end{document}

然后,一个更加通用的版本使用枚举,但没有永久的水平规则(如booktabs):

在此处输入图片描述

\documentclass[twocolumn]{article}
\usepackage{lipsum,caption,graphicx,enumitem}
\begin{document}
\lipsum[1-5]

\begin{figure*}[ht]
  \centering
  \includegraphics[width=.5\linewidth]{example-image}
  \caption{Some really interesting picture.}
\end{figure*}

\begin{enumerate}
  \item \lipsum[1]
  \item \lipsum[2]
\end{enumerate}

\begin{center}
\captionof{table}{The Vulnerable Assets}
\end{center}
\vspace*{-2\baselineskip}
\noindent\leavevmode\hrulefill
\begin{enumerate}[label=VA\arabic*,align=left,labelwidth=2em,leftmargin=3em,labelsep=1em]
  \item[\textbf{No.}] \textbf{Item and Description}

  \item \lipsum*[7]

  \item \lipsum*[4]
\end{enumerate}
\vspace*{-\baselineskip}
\noindent\leavevmode\hrulefill

\lipsum[3]
\end{document}

相关内容