I am trying to draw a table, but some of the fields are missing. The table fields are out of the page. I am using the following packages.
\documentclass{Dissertate}
\begin{document}
\usepackage{longtable} % for 'longtable' environment
\usepackage{rotating}
\usepackage{lscape}
\begin{landscape}
\begin{longtable}[c]{p{5cm}c c c c c c c c c c c c c c c }
\hline
Parameter & Device & Table & Variable & night\_lowlimit & night\_upperlimit & day\_lowlimit & day\_upperlimit & sensor\_definition\\\hline
Global\_radiations & DAR & EMB1.DAR & PYR.R.SWDR.Avg &0 & 0 & 0 & 10 & EB1.PYR.R.SWDR.001.AVG \\
Reflected\_irradiance & DAR & EMB1.DAR & PYR.R.SWUR.Avg & 0 &0& 0& 10 & EB1.PYR.R.SWUR.001.AVG \\
\end{longtable}
\end{landscape}
\end{document}
I am trying to draw table completely on one page. If someone help me to get rid of this problem. I will be grateful


\documentclass{...}, the required\usepackage's,\begin{document}, and\end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem. – ebosi Oct 08 '17 at 17:45longtablethe only thing that package does is allow tables to break onto multiple pages. – David Carlisle Oct 08 '17 at 17:48p-type column, or usingtabularx/tabularypackages/environment). Yet at some point, you cannot make a very large content fit a limited space... – ebosi Oct 08 '17 at 17:50Dissertateclass, I assume it will be Ok to usearticle– David Carlisle Oct 08 '17 at 18:09