文本出现在表格的背景中,如何让文本出现在表格之后?

文本出现在表格的背景中,如何让文本出现在表格之后?

我在 latex 中创建了一个表格。表格后面的所有文本都出现在表格的背景中。居中属性也不起作用。我希望这个表格位于页面的中心或中间。

\begin{table}[t]
\caption{caption}
\centering
\begin{tabular}{|c|c|c|c|c|c|c|c|c|}
\hline
\textbf{Type}                            & \textbf{Database Name} & 
\textbf{Anger} & \textbf{Disgust}        & \textbf{Fear} & 
\textbf{Happiness} & \textbf{Sadness} & \textbf{Surprise} & \textbf{Total 
Images} \\ \hline
                                     & CK+                    &                
& {\color[HTML]{333333} } &               &                    &                  
&                   &                       \\ \cline{2-9}
                                     & JAFFE                  &                 
&                         &               &                    &                  
&                   &                       \\ \cline{2-9}
                                     & RaFD                   &                
&                         &               &                    &                  
&                   &                       \\ \cline{2-9}
\multirow{-4}{*}{\textbf{Train Dataset}} & TFEID                  &                
&                         &               &                    &                  
&                   &                       \\ \hline
                                     & CK+                    &                
&                         &               &                    &                  
&                   &                       \\ \cline{2-9}
                                     & JAFFE                  &                
&                         &               &                    &                  
&                   &                       \\ \cline{2-9}
                                     & RaFD                   &                
&                         &               &                    &                  
&                   &                       \\ \cline{2-9}
\multirow{-4}{*}{\textbf{Test Dataset}}  & TFEID                  &                
&                         &               &                    &                  
&                   &                       \\ \hline
\end{tabular}
\end{table}

以下是截图

相关内容