包含垂直文本的表格

包含垂直文本的表格

我是新来的,需要你的帮助。我很想在 Latex 中复制下表。

在此处输入图片描述

我写了这个代码。

\begin{tabular}{c|p{3cm}|p{3cm}|c}
  \multicolumn{4}{c}{Technical/economic systems} \\
  \cline{2-3}
  \multirow{1}{*}{\rotatebox{90}{Internal}} &
  Cell 1 & Cell 2 &  \rotatebox{-90}{External}\\
  \cline{2-3}    & Cell 3 & Cell 4 & \\
  \cline{2-3}
  \multicolumn{4}{c}{Human/organizational/social systems} 
\end{tabular}

有人能帮忙吗?非常感谢

答案1

每行添加两个额外的空行和命令作为origin=c选项:\rotatebox\multirow{4}

在此处输入图片描述

\documentclass{article}
\usepackage{graphicx}
\usepackage{multirow}

\begin{document}

   \begin{tabular}{c|p{3cm}|p{3cm}|c}
   \multicolumn{4}{c}{Technical/economic systems} \\
     \cline{2-3}
     \multirow{4}{*}{\rotatebox[origin=c]{90}{Internal}} &
     Cell 1 & Cell 2 &  \multirow{4}{*}{\rotatebox[origin=c]{-90}{External}}\\
     & & & \\
     \cline{2-3}    & Cell 3 & Cell 4 & \\
     & & & \\
     \cline{2-3}
     \multicolumn{4}{c}{Human/organizational/social systems} 
     \end{tabular}

\end{document}

相关内容