How do I make it so all cells in my table share a uniform length?
I tried the following LaTeX code:
\begin{tabular}{c|c||c|c}
S & R & Q & Q' \\
\hline
0 & 0 & \multicolumn{2}{c}{als voordien} \\
0 & 1 & 0 & 1 \\
1 & 0 & 1 & 0 \\
\end{tabular}
It generates the following table however:
As you can see, the fourth column is wider than the others. Is there a way to force it to be uniformly distributed?
I'm really sorry if there is an obvious answer to this question, but I am very much new to Latex, and I wasn't able to find anything on Google.
This question isn't the same as Column with fixed width and centre alignment that was commented below. That question is about retaining cell uniformity in the scenario of sub-cells. This one is about how to get a table with a uniform cell size in the first place. I am not satisfied with simply setting the table width to an absolute, as this seems inelegant and hackish. I'd much rather have my table be the smallest size it can be while keeping cell uniformity.



