I'm not an expert with the tabular environment...I have some problems:
- I got an error "Extra alignment tab has been changed to \cr."
- I would like to have the professor name completely to the right.
\documentclass[12pt,a4paper,oneside]{book}
\usepackage{array,booktabs,siunitx}
\begin{document}
\noindent
\begin{tabular}{@{}l@{\hspace{.5em}}l r}
Students: & &Professor: &\\
Name1 &\textsc{Surname} &Name &\textsc{Surname} \\
Name2 &\textsc{Surname} & & \\
Name3 &\textsc{Surname} & &
\end{tabular}
\end{document}
Can somebody help me?


\begin{tabular}{@{}l@{\hspace{.5em}}l r l}. See the lastl. – Harish Kumar Feb 17 at 11:41