长公式换行:
使用&进行对齐,\进行换行,{aligned}进行左对齐。
\begin{equation} \begin{aligned} \label{eq3} &L_{DIC - SKD} \\& = \left\k, if{\rm{ }}{L_{DIC - SKD}} \ge k \end{array} \right. \end{aligned} \end{equation}
multirow使用导致的文字靠上
最终效果:
解决方案:把\cline{2-5}修改为\cmidrule{2-5}
\begin{table}\caption{Performance comparison on CIFAR100 and Tiny ImageNet. The best result is indicated as boldface.}\label{tbl1}
\setlength\tabcolsep{3.5pt} % 调整表格列间的宽度
\begin{tabular*}{\tblwidth}{ccccc}
\toprule
\multirow{2}*{Methods} & \multicolumn{2}{c}{CIFAR100} & \multicolumn{2}{c}{Tiny ImageNet} \\
%\cline{2-5}
\cmidrule{2-5}
~ &WRN-16-2&ResNet18&WRN-16-2&ResNet18\\
\bottomrule
\end{tabular*}
\end{table}