答案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}