0

I am trying to create a title slide where the title/author/affiliation/etc is left aligned but in the right hand side there will be a picture ranging from the very top to the bottom. Does anybody know how to do it? Thanks

Silva
  • 1

1 Answers1

2

A quick way is to use columns:

\documentclass{beamer}
\usetheme{Madrid} 
\title{title}
\institute{inse}
\author{author}
\date{2017}
\begin{document}

\begin{frame}[plain]
    \begin{columns}[c]
        \begin{column}{.7\textwidth}
            \titlepage
        \end{column}
        \begin{column}{.2\textwidth}
            \includegraphics[width=\textwidth, height=\textheight]{example-image}
        \end{column}
    \end{columns}
\end{frame}

\end{document}

enter image description here