I'm writing my MSc thesis and I'm facing some troubles. I have two supervisors. I need to list their names and affiliations side by side as shown in the attached screenshot. How can I achieve this? So far, I have the following code for the title page
\documentclass[12pt,a4paper,openany]{book} \usepackage[utf8]{inputenc} \usepackage[left=1in, right=1in, top=1in, bottom=0.85in, headsep=22pt, footskip=0.75cm]{geometry} \usepackage[x11names, svgnames, dvipsnames]{xcolor} \usepackage{amsmath,amsfonts,amssymb,amsthm} \numberwithin{equation}{section} \usepackage{graphicx} \usepackage{setspace} \begin{document} \begin{titlepage} \begin{center} \vspace*{1cm} {\LARGE \textbf{The title} \par} \vspace*{1.5cm} \textsc{By} \vspace*{0.7cm} {\Large \textsc{Hussein Eid Abdelgelil Elsawy}} \vspace{2cm} \begin{spacing}{1.2} \textsc{A thesis submitted \\ to \\ Faculty Of Science \\ In Partial Fulfillment Of The Requirements For \\ The Degree Of Master Of Science \\ (Pure Mathematics) \\ Faculty Of Science, Cairo University } \end{spacing} \vspace*{2cm} \textsc{Supervisors} \end{center} \end{titlepage} \end{document} Also, does my code look good? or can be written in a better way?

