带有勾号、水平文本和多个垂直和水平列的表格

带有勾号、水平文本和多个垂直和水平列的表格

我正在尝试使用 IEEE trans 模板绘制这样的表格。我甚至不知道从哪里开始。有什么建议吗?在此处输入图片描述

答案1

使用在线LaTeX 表格生成器只需单击几下即可完成此操作:

在此处输入图片描述

这是我在网站上能做的最好的了。然后将生成的代码移到 LaTeX,我们可以做一些修改来获得下面的代码。

更新

我采纳了 Mico 的建议\extrarowheight,还在\phantom{.}后面添加了一个,以在和水平线NB之间留出间隙。B

\documentclass{article}
\usepackage{multirow} % For multirows
\usepackage{amssymb} % For the checkmark
\usepackage{graphicx} % For the rotation
\usepackage{array} % To enlarge the vertical space of the table's contents
\begin{document}
\begin{table}[]
 \setlength\extrarowheight{2pt}
 \centering
 \caption{My caption}
 \label{my-label}
 \begin{tabular}{l|l|l|l|l|l|l|l|l|l|l|}
  \cline{2-11}
  \multirow{2}{*}{}                            & \multirow{2}{*}{Suggestions} & \multicolumn{9}{c|}{Other side}   \\ \cline{3-11} 
                                             &                   &   &  &   &   &   & \rotatebox{90}{NB\phantom{.}} &   &   &   \\ \hline
  \multicolumn{1}{|l|}{\multirow{4}{*}{\rotatebox{90}{Based}}} &                   &   &  &   &   &   &    & \checkmark & \checkmark &   \\ \cline{2-11} 
  \multicolumn{1}{|l|}{}                       & Your Answer       &   &  & \checkmark &   & \checkmark & \checkmark  &   &   & \checkmark \\ \cline{2-11} 
  \multicolumn{1}{|l|}{}                       &                   & \checkmark &  &   & \checkmark &   &    &   &   &   \\ \cline{2-11} 
  \multicolumn{1}{|l|}{}                       &                   & \checkmark &  &   &   &   &    &   &   &   \\ \hline
 \end{tabular}
\end{table}
\end{document}

其结果为:

在此处输入图片描述

现在您可以通过改变l对齐字符来p{}获得不同的列宽,但这我将留给您自己决定;)

相关内容