Skip to content

Instantly share code, notes, and snippets.

@davidfokkema
Created May 21, 2012 13:03
Show Gist options
  • Save davidfokkema/2762213 to your computer and use it in GitHub Desktop.
Save davidfokkema/2762213 to your computer and use it in GitHub Desktop.
Tikz IPO example
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{positioning}
\begin{document}
\begin{figure}
\centering
\begin{tikzpicture}[node distance=5cm, inner sep=10pt]
\node[draw] (in) {\begin{minipage}{3cm}\begin{itemize}\item foo \item bar\end{itemize}\end{minipage}};
\node[above=0pt of in] {in};
\node[draw,right of=in] (process) {baz};
\end{tikzpicture}
\end{figure}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment