\begin{table*}
\centering
\caption{Eigenvalues of Study System with and without SSSC}
\begin{tabular}{c|c|c|c|c}
\toprule
\multirow{3}{*}{Mode}&\multicolumn{4}{c}{75\% Compensation level}\\
\cmidrule{2-5}
&\multicolumn{2}{c}{case:1(without SSSC)} &\multicolumn{2}{|c}{case:2(with SSSC)} \\
\cmidrule{2-5}
&$\sigma\pm j\omega$& $\zeta$ &$\sigma\pm j\omega$& $\zeta$ \\
\midrule
Supersynnchronous&-9.5903$\pm$629.17i&0.01524 &-12.344$\pm$556.39i&0.02218\\
Subsynnchronous&1.6034$\pm$123.7 &-0.01296&-9.0587$\pm$137.23i&0.06586\\
Shaft &-0.4911$\pm$6.1496i&0.07962 &-0.48842$\pm$6.1493i&0.07917\\
Torsional &-85.88 $\pm$38.471i&0.91261 &-85.883$\pm$37.936i&0.91474\\
Electromechanical&-11.602$\pm$91.825i&0.12535 &-9.6224$\pm$94.729i&0.10106\\
\midrule
\multirow{7}{*}{Other}&-2416.6$\pm$1271.4i&0.88511 &-2421.1$\pm$1252.1i&0.88825\\
& 0$\pm$0i & - &-2670.3 &1 \\
& 0$\pm$0i & - &-110.25 &1 \\
& -0.12579 & 1 &-0.15132 &1 \\
& -0.0035219 & 1 &-0.0034435 &1 \\
& & &0$\pm$0i &- \\
& & &0$\pm$0i &- \\
\bottomrule
\label{comparison75}
\end{tabular}
\end{table*}
답변1
문제는 명령 \label
이 tabular
. 범위에 넣으면 table
추가 줄이 사라집니다.
이 정확한 문제가 발생하는 이유를 완전히 확신할 수 없습니다. 아마도 명령은 \label
첫 번째 열 구분선이 인쇄되는 추가 행의 시작으로 표시될 것입니다.
MWE:
\documentclass{article}
\usepackage{booktabs}
\usepackage{multirow}
\begin{document}
\begin{table*}
\centering
\caption{Eigenvalues of Study System with and without SSSC}
\label{comparison75}
\begin{tabular}{c|c|c|c|c}
\toprule
\multirow{3}{*}{Mode}&\multicolumn{4}{c}{75\% Compensation level}\\
\cmidrule{2-5}
&\multicolumn{2}{c}{case:1(without SSSC)} &\multicolumn{2}{|c}{case:2(with SSSC)} \\
\cmidrule{2-5}
&$\sigma\pm j\omega$& $\zeta$ &$\sigma\pm j\omega$& $\zeta$ \\
\midrule
Supersynnchronous&-9.5903$\pm$629.17i&0.01524 &-12.344$\pm$556.39i&0.02218\\
Subsynnchronous&1.6034$\pm$123.7 &-0.01296&-9.0587$\pm$137.23i&0.06586\\
Shaft &-0.4911$\pm$6.1496i&0.07962 &-0.48842$\pm$6.1493i&0.07917\\
Torsional &-85.88 $\pm$38.471i&0.91261 &-85.883$\pm$37.936i&0.91474\\
Electromechanical&-11.602$\pm$91.825i&0.12535 &-9.6224$\pm$94.729i&0.10106\\
\midrule
\multirow{7}{*}{Other}&-2416.6$\pm$1271.4i&0.88511 &-2421.1$\pm$1252.1i&0.88825\\
& 0$\pm$0i & - &-2670.3 &1 \\
& 0$\pm$0i & - &-110.25 &1 \\
& -0.12579 & 1 &-0.15132 &1 \\
& -0.0035219 & 1 &-0.0034435 &1 \\
& & &0$\pm$0i &- \\
& & &0$\pm$0i &- \\
\bottomrule
\end{tabular}
\end{table*}
\end{document}
결과: