I am a beginner in Latex and finding it very difficult to handle the table (compared to MS Word). So I need some guidance from the experts here.
I am trying to write a paper using springer template (Download the template here)\documentclass[twocolumn]{svjour3}. I like to include a comparison table in landscape mode on a fresh page. However, when I am compiling it, the table moves to the next page trying to occupy the first column of the next page garbling everything
. I tried to use \pagebreak[4] with no effect. I am giving the MWC that I could make with my beginner's knowledge. Any alteration, smart look will be thankfully acknowledged along with the solution of the main problem.
\documentclass[twocolumn]{svjour3}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{comment}
\usepackage[center]{caption}
\usepackage{subcaption}
\usepackage{float}
\usepackage{csquotes}
\usepackage[section]{placeins}
\usepackage{graphicx}
\usepackage{rotating}
\begin{document}
\begin{sidewaystable}
\caption{Comparison among state of the art designs}
\label{tab:1} % Give a unique label
\begin{tabular}{p{1in}|p{0.5in}ccp{0.5in}p{0.5in}p{0.8in}p{1.7in}}
\hline\noalign{\smallskip}
\textbf{Reference}&\textbf{Sensors}&\textbf{Dedicated}&\textbf{Number of sensors}&\textbf{Method}&\textbf{Accuracy}&\textbf{Features}&\textbf{Limitations}\\
\hline\noalign{\smallskip}\\
Er and Tan (2018)&Sound sensor, accelerometer&Yes&More than one&Non-ambulatory&~92%&Fuzzy logic based dual detection capability&Indoor only, no location information, costly and non-portable solution.\
He et al.(2020)&RFID and Radar&Yes&More than one&Non-ambulatory&~94%&Increased detection area up to 230% compared to traditional systems.&Indoor only, no location information, costly and non-portable solution. Implementation requires specialized training.\
Van Thanh et al.(2018)&Proprietary accelerometer&Yes&One&Wearable sensor&~92%&Fall as well as post fall posture recognition.&Costly and bulky, no local processing on device, no text based warning SMS.\
Zhang, Hongtao et al.(2020)&Accelerometer, Gyroscope and Magnetometer&Yes&More than one&Wearable
sensor&~96%&Fall and post fall posture recognition. Warning SMS with location.&Costly and bulky, no local processing on device, no text based warning SMS.\
Zurbuchen, N. et al.(2021)&Accelerometer Gyroscope&Yes&More than one&Wearable sensor&~97%&Multiclass fall and ADL detection.& High initial cost, separate device, no local processing on device.\
Yu, Gong, and Kollias (2017)&Camera&Yes&More than one&Image and computer vision&~96%&Posture based detection ( Laying is treated as fall).&High initial cost, no local processing on device, not suitable for outdoor, privacy issues.\
Juang et al.(2015)&Camera&Yes&More than one&Image and computer vision&100%&Human joint identification along with fall.&High initial cost, no local processing on device,low portability, not suitable for outdoor, privacy issues. No local dataset used.\
Zhang et al.(2020)& Camera& Yes&More than one&Image and computer vision& ~98%&Fall detection based on body posture, local dataset used.&High initial cost, no local processing on device, not suitable for outdoor.\
Shu, Francy. et al.(2021)&Camera&Yes&More than one& Image and computer vision&94%&Multi genre fall detection using eight cameras.&High initial cost,low portability, no local processing on device, not suitable for outdoor, privacy issues.\
\hline
\end{tabular}
\end{sidewaystable}
\end{document}
Please help.



\smallor a smaller size before the tabular – David Carlisle Feb 26 '21 at 19:05sidewaystable*instead ofsidewaystable. Additionally, I suggest adjusting the column widths according to their contents in order to save space and to reduce the amount of wasted white space. I'd also try to abbraviate the entries in column 4 by using "1" and ">1" instead of the current entries. – leandriis Feb 26 '21 at 19:16