0

I want to add my supervisor's name and on the left side and my advisory committee members' names to the left side of my beamer title page? Kindly tell me how can I do that. Currently it is like this,

\documentclass[aspectratio=149]{beamer}
\usetheme{CambridgeUS}
\title{Something}
\author{Someone}

\institute{\textsc{Somewhere}} \begin{document} \begin{frame} \maketitle \end{frame} \end{document}

  • 1
    Welcome to TeX.SX! Very recently, we had a very similar question here. See also: https://tex.stackexchange.com/q/393310/47927 or https://tex.stackexchange.com/q/163190/47927 or https://tex.stackexchange.com/q/114216/47927 . – Jasper Habicht Nov 17 '21 at 09:30
  • You don't HAVE to use \maketitle. It is supposed to make the title page easier, but often makes it harder. – John Kormylo Nov 17 '21 at 15:11

1 Answers1

1

An example is given if you find it useful.

\documentclass[aspectratio=149]{beamer}
\usetheme{CambridgeUS}
\title{Something}
\author{Someone}

\institute{\textsc{Somewhere}} \begin{document} \begin{frame} \maketitle \begin{columns}[t]

    \begin{column}{.5\textwidth}
      \hspace*{10mm} Mr. X\\
      \hspace*{10mm} X College
    \end{column}
    \begin{column}{.5\textwidth}
      Mr. Y\\
      X College
    \end{column}
    \end{columns}
\end{frame}

\end{document}

mmr
  • 2,249
  • 5
  • 22