Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/python/349.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Latex表移出节并进入下一页_Latex - Fatal编程技术网

Latex表移出节并进入下一页

Latex表移出节并进入下一页,latex,Latex,我正在写一篇有两个专栏的期刊论文。但我需要整个列的表。使用下面的代码表将从比较分析部分推出到新页面 \section{Comparatively Analysis} \hfil\break \begin{table*} \centerline {TABLE 1} \begin{center} \begin{tabular} {|c|c|c|c|c|} \hline \multicolumn{5} { | c | }{Comparison Table}\\ \hline Paper &

我正在写一篇有两个专栏的期刊论文。但我需要整个列的表。使用下面的代码表将从比较分析部分推出到新页面

\section{Comparatively Analysis}
\hfil\break
\begin{table*}
\centerline {TABLE 1} 
\begin{center}
\begin{tabular} {|c|c|c|c|c|} 

\hline
\multicolumn{5} { | c | }{Comparison Table}\\
\hline
Paper & Dataset & Approach & Model & Evaluation \\
\hline
Mary[7] & Air Pollution & Statistical & ST Correlation & RMSE 3.54 for 15\% missing data\\
\hline
Zhang[10] & Water Quality & Deep Learning & Seq2Seq & RMSE 3.29 \\
\hline
Turabieh[11] & Mammographic Mass, Hepatitis & Soft Computing & ANFIS-GA,ANFIS-PSO& Accuracy 85.2\% \\
\hline
Verma[12] & MIT-BIH ECG & Deep Learning & LSTM & 5-step RMSE 0.1 and 10-step RMSE 0.07 \\
\hline
Al-Milli[13] & Mammographic Mass & Deep Learning & Jordan RNN & Accuracy 84.27\% \\
\hline
\end{tabular}
\end{center}
\end{table*}
\hfil\break


\section{Conclusion}
Due to improper internet communications


主要问题是表格太大。您必须使用
graphicx
软件包中的
resizebox
方法。在这里,我从
tabu
包中提供了一个稍微好看一点的表;这种格式在学术界和教科书中广泛使用

\usepackage{tabu, makecell, graphicx, booktabs}
%%Begin document (...)

\section{Comparatively}
\hfil\break
\begin{center}
\tabulinesep=1.6mm          %%height between lines
\resizebox{1.1\columnwidth}{!}{    %% 1.1 is the scale factor of the column width
    \begin{tabu}{ccccc}
        \toprule
        \toprule
        \multicolumn{5}{c}{\ \ \ Comparison Table}\\
        \multicolumn{1}{c}{\textit{Paper}}&\multicolumn{1}{c} 
        {\textit{Dataset}}&\multicolumn{1}{c}{\textit{Approach}}&\multicolumn{1}{c} 
        {Model}&\multicolumn{1}{c}{\textit{ Evaluation}}\\
        \cmidrule(lr){1-1} \cmidrule(lr){2-2} \cmidrule(lr){3-3} \cmidrule(lr){4-4} 
        \cmidrule(lr){5-5}

           Mary$[7]$ & Air Pollution                              & Statistical    & ST Correlation                     & \makecell{RMSE $3.54$ for \\ $15\%$ missing data }  \\
        Zhang$[10]$  & Water Quality                              & Deep Learning  & Seq$2$Seq                          & RMSE $3.29$                                         \\
      Turabieh$[11]$ &  \makecell{Mammographic mass \\ Hepatitis} & Soft Computing & \makecell{ANFIS-GA,\\ ANGIS-PSO}   & Accuracy $85.2\%$                                    \\
        \bottomrule
        \bottomrule
    \end{tabu}
}
\end{center} 
{ \footnotesize\textbf{Table 1:} Table description } 
\hfil\break

\section{Conclusion}
Due to improper internet communications


如果表格右侧重叠过多,将“比例因子”改回1.0。如果没有,请将其保持在1.1以提高可见性。

请编写一份可编译的感谢信,我如何在您的解决方案表中设置所有边的边框