我正在尝试创建一个标题幻灯片,其中标题/作者/所属机构/等左对齐,但在右侧会有一张图片从最顶部到底部。有人知道怎么做吗?谢谢
答案1
一种快捷方式是使用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}