My favorites | Sign in
Project Home Downloads Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions

Issue 74 attachment: entrada-algoritmo-saida.tex (562 bytes)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
\documentclass{article}

\usepackage[T1]{fontenc}
\usepackage{tikz}

\usetikzlibrary{shadows}
\tikzstyle{nodediagrama} = [draw, text width=2cm, drop shadow,
font=\sffamily, rectangle, rounded corners=2pt, thin, align=center,
fill=white, minimum height=2em, node distance=3.5cm]

\begin{document}
\begin{tikzpicture}[>=latex]
\node[nodediagrama] (E) {Entrada};
\node[nodediagrama, right of = E] (A) {Algoritmo};
\node[nodediagrama, right of = A] (S) {Sa\'\i da};

\path[->] (E) edge (A);
\path[->] (A) edge (S);
\end{tikzpicture}
\end{document}
Powered by Google Project Hosting