I am using the metropolis theme to create a beamer presentation. I would like to include in the title page, on the left, my name as main author, and on the right, a column named "advisors" with the name of my advisors. Something like this image:
This is a very basic MWE without the advisors part:
\documentclass[10pt, aspectratio=169]{beamer}
\usetheme[progressbar=frametitle]{metropolis}
\usepackage[american]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\title{\textbf{Title}}
\author{Main author}
\date{}
\begin{document}
\maketitle
\end{document}
I am struggling on how to include the advisors column here.

