如何在投影仪演示文稿中设计形状?

如何在投影仪演示文稿中设计形状?

我想准备一个演示文稿beamer。我想在一些幻灯片中包含一些形状。我想问一下最好的方法是什么。最好使用其他软件绘制形状然后将它们添加到 tex 文件中,还是有允许我在 tex 文件中这样做的软件包?提前谢谢。

答案1

有几种方法可以做到这一点 - 因为你的问题有点模糊,所以我不确定这是否是你想要的:

动画片

它使用非常强大且用户友好的tikz包装。您可以使用这个包装制作很多其他的东西和形状,这只是一个例子。

% arara: pdflatex
% !arara: animate: {delay: 60}
% !arara: indent: {overwrite: yes}
\documentclass{beamer}

\usepackage{tikz}
\usetikzlibrary{positioning}
\usetikzlibrary{shapes}

\begin{document}



\begin{frame}

    \makebox[\textwidth]{%
        \begin{tikzpicture}[every node/.append style={cloud,draw,double,very thick,align=center}]
            \node[fill=red!20, draw=red,minimum width=1cm,minimum height=1.5cm,cloud puffs=10, aspect=2.0] (installation){1. Installation\\ \& easy document};
            \visible<2->{\node[cloud,below right=of installation,draw=blue,fill=blue!20, cloud puffs=13, aspect=1.3](buildingblocks)    {2. Building\\ blocks};}
            \visible<3->{\node[left=0.75cm of buildingblocks, draw=yellow,fill=yellow!20, minimum height=1.5cm, cloud puffs=17, aspect=2](tables){3. Tables\\\& floats};}
            \visible<4->{\node[left=0.75cm of tables, draw=green,fill=green!20, cloud puffs=13, aspect=3](figures){4. Home-made \\ figures};}
            \visible<5->{\node[left=.3cm of installation, draw=orange,fill=orange!30, cloud puffs=12, aspect=2.3]{5. Big documents\\\& presentations};}
        \end{tikzpicture}
    }

\end{frame}

\end{document}

相关内容