I am looking for a (clean) way to keep text aligned in a situation like the following:
thesis under the direction of:
[tab] Title [&] Name [&] University
with the supervision of:
[tab] Title [&] Name [&] University
[tab] Title [&] Name [&] University
[tab] Title [&] Name [&] University
The (dirty) way I found so far is to fix empirically the width of the first and second column. Here's an MWE
\documentclass[11pt]{article}
\begin{document}
\begin{titlepage}
\vspace*{\fill}
\noindent{\emph{thesis under the direction of}}\\[.3cm]
\hspace*{.4cm}\begin{tabular}{p{.1\textwidth}p{.4\textwidth}l}
Title & First Name Last Name & University A\\
\end{tabular}
\vspace*{.5cm}
\noindent{\emph{with the supervision of}}\\[.3cm]
\hspace*{.4cm}\begin{tabular}{p{.1\textwidth}p{.4\textwidth}l}
Title & First Name Last Name & University B\\
Title & First Name Last Name & University C\\
\end{tabular}
\end{titlepage}
\end{document}
I was just curious to know whether there would be a cleaner, more systematic way of doing that?
Thanks!

