有人知道我怎样才能制作这样的表格吗?

有人知道我怎样才能制作这样的表格吗?

我正在写我的最终学位,但我在网上找不到可以帮助我的东西。我想做一个这样的表格。我尝试使用\multirow{}{}

在此处输入图片描述

答案1

让我扩展我的评论来回答。对于起点,可以提供以下 MWE(最小工作示例):

\documentclass{article}
\usepackage{makecell, tabularx}
\newcolumntype{C}{>{\centering\arraybackslash}X}

\begin{document}
\noindent%
\begin{tabularx}{\linewidth}{|C|C|C|}
    \hline
\thead{Column 1}    &   \thead{Column 2}    &   \thead{Column 3}    \\
    \hline
Course 1            &   Some information    &   Another information \\
    \cline{2-3}
Course 2            &   Some information    &   Another information \\
    \cline{2-3}
Course 3            &   Some information    &   Another information \\
    \cline{2-3}
Course 4            &   Some information    &   Another information \\
    \hline
    \end{tabularx}
\end{document}

在此处输入图片描述

答案2

一种可能性(如@Zarko 所述)是使用\cline在所需单元格下方画一条线。对于您想要编写的表格类型,代码可能如下所示:

\begin{tabularx}{\textwidth}{|X|X|X|}
...

Course 1 & Same Information & Another same information\\\cline{2-3}

相关内容