view workflow-yourself.tex @ 318:d4fb0c45e2be

Add subsections
author Martin Geisler <mg@aragost.com>
date Fri, 10 Jun 2011 10:06:50 +0200
parents 6261ca0b5704
children
line wrap: on
line source

\begin{frame}{Workflow Between Two Computers}
  \dots to working with yourself:
  \begin{center}
    \begin{tikzpicture}
      \tikzstyle{repository}+=[minimum height=18mm, text width=15mm]
      \tikzstyle{bitbucket}=[draw, thick, fill=blue!20!white, cloud,
        cloud puffs=9, aspect=2]
      \tikzstyle{every path}=[<->, short]

      \node[repository] (a1) at (-2cm, 0cm) {Alice's Desktop};
      \node[repository] (a2) at ( 2cm, 0cm) {Alice's Laptop};
      \node[bitbucket] (b) at (0cm, 4cm) {bitbucket.org};

      \draw[short, <->] (a1) -- (b);
      \draw[short, <->] (a2) -- (b);
    \end{tikzpicture}
  \end{center}
\end{frame}