First at all: sory my bad english
i use latex beamer to make a presentation.
i draw with tikz and foreach one graph:
Code: Select all
\foreach \pos/\name in {{(0,2)/S2}, {(0,4)/S1}, {(4,3)/A}}
\node (\name) at \pos [] {$\name$};
\foreach \source/ \dest /\weight in {S1/A/5, S2/A/8}
\draw[->] (\source) to node[] {\weight} (\dest);
finaly i will to get similary result as the attached pdf, but for each path from s to t.
Can anybody help me with it?
Thanks!