首页 > 解决方案 > Tex:使用SIAM模板将两列句子和一张表格放在一页上

问题描述

我正在为 SIAM 国际数据挖掘会议 (SDM) 撰写补充材料。我正在使用以下带有两列的 SIAM 模板。 https://www.siam.org/Portals/0/Conferences/Proceedings/soda2e_031819.zip

如何在一页上放小句子和一个表格?我展示了这个例子,尽管它需要两个空间很大的页面。

\documentclass[twoside,leqno,twocolumn]{article}
\usepackage[letterpaper]{geometry}
\usepackage{ltexpprt}

\begin{document}
\title{Table test}
\author{Author1}
\date{}
\maketitle
\fancyfoot[R]{\scriptsize{Copyright \textcopyright\ 20XX by SIAM\\
Unauthorized reproduction of this article is prohibited}}

\begin{abstract}
This is an abstract.
\end{abstract}

\section{Test1.}
Table~\ref{tbl:test} is a test table.

\begin{table*}[htbp]
 \centering
 \caption{Test table.}
 \label{tbl:test}
 \begin{tabular}{ c|c|c|c|c } \hline
  & t1 & t2 & t3 & t4 \\ \hline
a & b  & c  & d  & e  \\ \hline
 \end{tabular}
\end{table*}

\end{document}

感谢您的意见。

上述 TEX 示例的 PDF 图像

标签: latextextwo-column-layout

解决方案


推荐阅读