用于演示和 tikz 混合的 Documentclass

用于演示和 tikz 混合的 Documentclass

我正在寻找一种解决方案,在 DinA3 中为 2 个流程构建一个单页程序。您怎么看的,我需要一个图中的图片和表格,而下一个图中只需要一个表格。箭头也很重要(这是一个例子)。

有人知道解决方案吗?我正在考虑使用 documentclass beamer 来定义页面大小,并使用 tikz 来绘制箭头。

在此处输入图片描述

答案1

您可以使用该beamerposter包更改为 din A3 布局:

\documentclass{beamer}

\usepackage{tikz}
\usepackage[orientation=portrait,size=a3]{beamerposter}

\begin{document}
\begin{frame}
  \begin{tikzpicture}[scale=10,transform shape]
    \node[fill=blue,font=\color{white}] at (0,0) {Test};
    \draw[blue,-latex,line width=1cm] (0,-0.5) -- (-1,-2);
  \end{tikzpicture}
\end{frame}
\end{document}

相关内容