如何将表格的旋转框调整到中心

如何将表格的旋转框调整到中心
\begin{landscape}
\begin{table}[htbp]
\caption{Units for Magnetic Properties}
\label{tablsssss}
\centering
%\bfseries
\begin{tabular}{|p{4pt}|p{40pt}|p{80pt}|p{100pt}|p{200pt}|p{10pt}|}
\hline
\rotatebox[origin=c]{90}{\raisebox{-5pt}{year}} &  Ref &  Alg & Goal & Appr  &   Test  \\
\hline
\rotatebox[origin=c]{90}{\raisebox{-5pt}{2019}}& 33&  39.66&  39.66&  39.5&65 \\
\cline{2-6}
 &Moy Pages cibles & 25.66&  62&  100&  33 \\
 \cline{2-6}
 &Moy Pages cibles & 25.66&  62&  100&  33 \\
 \cline{2-6}
 &Moy Pages cibles & 25.66&  62&  100&  33 \\
\hline
\end{tabular}\hspace*{-2cm}
\end{table}
\end{landscape}

在此处输入图片描述

答案1

您可以使用 multirow 包来实现这一点。请考虑以下代码:

\documentclass{report}
\usepackage{rotating,multirow}
\usepackage{array}

\begin{document}
\begin{table}[htbp]
\caption{Units for Magnetic Properties}
\label{tablsssss}
\centering
%\bfseries
\begin{tabular}{|c|p{60pt}|p{80pt}|p{40pt}|p{40pt}|p{14pt}|}
\hline
\rotatebox[]{90}{year} &  Ref &  Alg & Goal & Appr  &   Test  \\
\hline
\multirow{7}{*}{\rotatebox[origin=c]{90}{2019}}& 33&  39.66&  39.66&  39.5&65 \\
\cline{2-6}
 &Moy Pages cibles & 25.66&  62&  100&  33 \\
 \cline{2-6}
 &Moy Pages cibles & 25.66&  62&  100&  33 \\
 \cline{2-6}
 &Moy Pages cibles & 25.66&  62&  100&  33 \\
\hline
\end{tabular}
\end{table}
\end{document}

结果如下:

在此处输入图片描述

相关内容