I am trying to make a very wide table that spans in two pages in latex. Due to its wideness, I rotated the table 90 degree. However, the table content in the next page is not visible. Can any one please help me?
the code is :
Code: Select all
\documentclass[review]{elsarticle}
\usepackage{lineno,hyperref}
\usepackage{tabularx}
\usepackage{adjustbox}
\usepackage{longtable}
\usepackage{rotating}
\usepackage{lscape}
\usepackage{supertabular}
%\usepackage{pdflscape}
\usepackage{ltxtable}
\modulolinenumbers[5]
\begin{document}
begin{landscape}
\begin{longtable}[c]{llllllllllll}
\begin{tabular} {|p{2cm}|p{2cm}|p{2cm}|p{2cm}|p{2cm}|p{2cm}|p{2cm}|p{2cm}|p{2cm}|p{2cm}|p{2cm}|p{2cm}|}% {|c|c|c|c|c|c|c|c|c|c|c|c|}
\hline
physical object and extracted data & milling machine tool &shop floor&Production Service Systems in petrochemical industry &injection manufacturing lines & additive manufacturing system & heat and power (CHP) systems & 3D printer & assembly process & manufacturing cell & CNC machine & production line\\
\hline
\end{tabular}
\end{longtable}
\end{landscape}
\end{document}