I am writing my final degree but I can´t find on the web something that could help me. I would like to do a table like this. I tried to use \multirow{}{}
Asked
Active
Viewed 109 times
0
Bernard
- 271,350
2 Answers
3
Let me extend my comment to answer. For starting point can serve the following MWE (minimal Working Example):
\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}
Zarko
- 296,517
2
One possibility (as outlined by @Zarko) would be to use \clineto draw a line under in the desired cells.
For the kind of table you want to write, the code could look like this :
\begin{tabularx}{\textwidth}{|X|X|X|}
...
Course 1 & Same Information & Another same information\\cline{2-3}


\cline{2-3}. – Zarko Oct 14 '19 at 17:57