将框架从一个角到另一个角进行划分

将框架从一个角到另一个角进行划分

我想在投影仪中将一个框架从一个角落分割到另一个角落,并在两边都有图像。它应该看起来像附图。我有这个想法,但我完全不知道该怎么做。请帮帮我。

在此处输入图片描述

答案1

你可以使用 tikz:

\documentclass{beamer}

\usepackage{tikz}

% trick taken from https://topanswers.xyz/tex?q=1989
\tikzset{
    use page relative coordinates/.style={
        shift={(current page.south west)},
        x={(current page.south east)},
        y={(current page.north west)}
    },
}

\begin{document}
    
\begin{frame}
  \begin{tikzpicture}[remember picture,overlay,use page relative coordinates]
    \draw[blue,thick] (current page.north west) -- (current page.south east);
    \node at (0.2,0.2) {\includegraphics[width=2cm]{example-image-duck}};
    \node at (0.8,0.8) {\includegraphics[width=2cm]{example-image-duck}};    
  \end{tikzpicture}
\end{frame} 
    
\end{document}

在此处输入图片描述

相关内容