如何在演示文稿第一页左侧添加图表

如何在演示文稿第一页左侧添加图表

我正在尝试在演示文稿第一页的左侧添加一个图形,其中有名称、说明、日期和标题。我尝试使用以下方法,但没有成功

\documentclass{beamer}
\usepackage{tikz}
\usetheme{Warsaw}
\title{Fooing the Bar}
\author{A.~Thor}
\institute{MWE Lmt.}
\titlegraphic{\vspace{8cm}}% to push the other text to the top
\date{\today}

\begin{document}
\begin{frame}
   \tikz [remember picture,overlay]
    \node at
        ([yshift=3cm]current page.south) 
        %or: (current page.center)
        {\includegraphics[width=\textwidth,height=.5\textheight]{photo1.jpg}};
   \titlepage
\end{frame}
\end{document}

答案1

目前尚不清楚,你的问题是什么。你的 mwe 工作正常。它将图像放在框架的下半部分。但是,从你的问题标题可以推断,你喜欢将图像放在左侧。请澄清你的问题!

以下是将图像放在标题页上的两个示例:

\documentclass[demo]{beamer}% in real document delete option "demo"
\usepackage{tikz}
\usetheme{Warsaw}
\title{Fooing the Bar}
\author{A.~Thor}
\institute{MWE Lmt.}
%\titlegraphic{\vspace{8cm}}% to push the other text to the top
\date{\today}

\begin{document}
\begin{frame}[plain]
\begin{columns}
\column[c]{.5\linewidth}
   \tikz [remember picture,overlay]
    \node[right] at (current page.west)  
        {\includegraphics[width=\linewidth, height=\textheight]{photo1}};
\column[c]{.5\linewidth}
    \vfil
    \titlepage
\end{columns}
\end{frame}

\begin{frame}[plain]
    \titlepage
   \tikz [remember picture,overlay]
    \node[above] at (current page.south)   % <---
        {\includegraphics[width=\linewidth, height=0.5\textheight]{photo1}};
\end{frame}
\end{document}

在此处输入图片描述

如你所见,标题页的第二种情况的代码与你的姆韦很小,对于第一种情况来说是使用columns环境。

相关内容