I'm trying to use a tabular* environment to create a simple table with two centered columns that are spaced apart so that the table fills the entire page.
\documentclass{article}
\begin{document}
\fbox{
\begin{tabular*}{\textwidth}{@{\extracolsep{\fill} } | c | c | }
\hline
\Large{Supervisor} & \Large{Student} \\
\hline
\Large{prof. X Y Z} & \Large{A B C} \\
\hline
\end{tabular*}
}
\end{document}
It ends up looking like this:
Note that not only does the table not space the cells apart properly, the top and left lines of the table do not come to a nice corner.
(I don't strongly care about borders not meeting since this table will ultimately not show them, but I drew them here to help debug.)
A similar table on another person's machine looks ok, so maybe there is something I'm missing on my system?




\Large{Supervisor}should be\Large Supervisor(although that does not change the output here) – David Carlisle Feb 26 '20 at 21:47{c @{\extracolsep{\fill}} c}exactly as recommended here: https://tex.stackexchange.com/a/56552/145783 with approximately the same result.\hfilldidn't seem to do anything. – rgov Feb 26 '20 at 21:50