I'm trying to add a landscape page with a table like in the figure. The table should stretch over the whole page and accommodate multiple lines of text.
I've looked at previous answers ( [1]1) but I'm not sure how to integrate those answers in a two-column layout.
% Contact: Holm Smidt, hsmidt@hawaii.edu
%% Based on the style files for ACL 2015 by
%% car@ir.hit.edu.cn, gdzhou@suda.edu.cn
\documentclass[10pt]{article}
\usepackage{lipsum}
\usepackage[letterpaper]{geometry}
\usepackage{hicss51}
\usepackage{times}
\usepackage[none]{hyphenat}
\usepackage{url}
\usepackage{latexsym}
\usepackage{minted}
\usepackage{indentfirst}
\usepackage{graphicx}
\graphicspath{{images/}}
\newcommand{\sansserifformat}[1]{\fontfamily{cmss}{ #1}}
\title{Please Read Carefully Detailed Formatting Guidelines for Preparing Your HICSS Final Paper with Author Names}
\author{First Author \\
Affiliation \\
{\underline{ email@domain}} \\\And
Second Author \\
Affiliation \\
{\underline{ email@domain} }\\}
\begin{document}
\maketitle
\begin{abstract}
\lipsum[1]
\end{abstract}
\section{table}
\section{table}
\afterpage{%
\clearpage% Flush earlier floats (otherwise order might not be correct)
\begin{landscape}% Landscape page
\centering % Center table
\begin{tabular}{llll}
This table has a lot of text This table has a lot of text This table has a lot of text This table has a lot of text This table has a lot of text This table has a lot of text & This table has a lot of textThis table has a lot of textThis table has a lot of textThis table has a lot of text & This table has a lot of textThis table has a lot of textThis table has a lot of textThis table has a lot of text & This table has a lot of textThis table has a lot of textThis table has a lot of textThis table has a lot of textThis table has a lot of text \\
\end{tabular}
\captionof{table}{Table caption}% Add 'table' caption
\end{landscape}
\clearpage% Flush page
}
\section{Introduction}
\lipsum[1-2]
\bibliographystyle{ieeetr}
\bibliography{sample}
\end{document}

hicss51-packages.texfile? I don't have it on my machine. – Skillmon May 18 '18 at 19:35hicss51is unknown to me. – Skillmon May 18 '18 at 19:39