在 Latex 中创建协议表

在 Latex 中创建协议表

我必须实现以下目标: 在此处输入图片描述

我可以实现

\begin{center}
\begin{tabular}{ |c c c|c }
 \hline
 cell1 & cell2 & cell3 & t \\ 
 \hline
 cell1 & cell2 & cell3 & t \\ 
 cell4 & cell5 & cell6 & t \\ 
 cell7 & cell8 & cell9 & t \\ 
 \hline
\end{tabular}
\end{center}

但这并没有真正达到我想要的明显效果! 在此处输入图片描述

任何想法?

答案1

像这样吗?

\documentclass{article}
\usepackage{multirow}
\usepackage{graphicx}
\usepackage{array}
\newcolumntype{C}[1]{>{\centering\arraybackslash}m{#1}}
\begin{document}
\renewcommand{\arraystretch}{1.5}
\begin{tabular}{|C{3cm}C{3cm}C{3cm}|c}
  \multicolumn{1}{c}{\Large User 1} & \Large User 2 & \multicolumn{1}{c}{\Large User 3} & \\\cline{1-3}
  \strut &&&\multirow{3}{*}{\rotatebox{-90}{Phase1}}\\
  \strut &&&\\
  Operation1 & Operation1 &&\\\cline{1-3}
  \strut Operation1 && Operation1 &\multirow{3}{*}{\rotatebox{-90}{Phase2}}\\
  \strut &&&\\
  \strut & Operation1 &&\\\cline{1-3}
  \strut & Operation1 &&\multirow{3}{*}{\rotatebox{-90}{Phase3}}\\
  \strut && Operation1 &\\
  Operation1 & Operation1 &&\\\cline{1-3}
\end{tabular}
\end{document}

在此处输入图片描述

相关内容