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
Asked
Active
Viewed 1,065 times
1 Answers
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}
samcarter_is_at_topanswers.xyz
- 158,329

minipage. I personally do not consider creating a general template of title and using it only one time very time-efficient. – Symbol 1 Jun 08 '17 at 02:37