
Here's a MWE showing my troubles :
Code: Select all
\documentclass[11pt,letterpaper,twoside]{article}
\usepackage[total={6in,10in},left=1.5in,top=0.5in,includehead,includefoot]{geometry}
\begin{document}
\begin{table}
\centering
\renewcommand{\arraystretch}{1.5}
\begin{tabular}{cccc}
\hline
\multicolumn{1}{|c|}{\textsf{Sections}}
& \multicolumn{1}{c|}{\textsf{Questions}}
& \multicolumn{1}{c|}{\textsf{Exercices}}
& \multicolumn{1}{c|}{\textsf{Problems}}
\\ \hline
% Chapter 1 :
\multicolumn{1}{|l|}{Read the whole chapter, except sections 1.5, which is optional.} & \multicolumn{1}{l|}{2, 3, 14} & \multicolumn{1}{l|}{1, 5, 7, 8, 11, 12, 15, 17, 20,} & \multicolumn{1}{l|}{1, 5, 6,}
\\[-5pt]
\multicolumn{1}{|l|}{ } & \multicolumn{1}{l|}{ } & \multicolumn{1}{l|}{21, 32} & \multicolumn{1}{l|}{8, 13}
\\ \hline
% Chapter 2 :
\multicolumn{1}{|l|}{2.1 to 2.10} & \multicolumn{1}{l|}{1, 8} & \multicolumn{1}{l|}{1, 3, 5, 9, 10, 14, 17, 19, 20,} & \multicolumn{1}{l|}{4}
\\[-5pt]
\multicolumn{1}{|l|}{ } & \multicolumn{1}{l|}{ } & \multicolumn{1}{l|}{23, 27, 29, 32, 35, 36, 38} & \multicolumn{1}{l|}{ }
\\ \hline
% Chapter 3 :
\multicolumn{1}{|l|}{3.1 to 3.5} & \multicolumn{1}{l|}{4, 10} & \multicolumn{1}{l|}{1, 3, 4, 5} & \multicolumn{1}{l|}{3, 6, 9}
\\ \hline
\end{tabular}
\end{table}
\end{document}
Currently, I had to define a second row to place the "Exercices" numbers on a second row. This is very ackward to edit and unnatural to code.