summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/pgf/incoming/KarlheinzOchs/placement.tex
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/latex/pgf/incoming/KarlheinzOchs/placement.tex')
-rw-r--r--Master/texmf-dist/source/latex/pgf/incoming/KarlheinzOchs/placement.tex28
1 files changed, 0 insertions, 28 deletions
diff --git a/Master/texmf-dist/source/latex/pgf/incoming/KarlheinzOchs/placement.tex b/Master/texmf-dist/source/latex/pgf/incoming/KarlheinzOchs/placement.tex
deleted file mode 100644
index ec65a53b7d0..00000000000
--- a/Master/texmf-dist/source/latex/pgf/incoming/KarlheinzOchs/placement.tex
+++ /dev/null
@@ -1,28 +0,0 @@
-% Placement example of from command,
-% which is an extension of the of command,
-% cf. tikz.code.tex of Till Tantau.
-%
-% Author: Dr. Karlheinz Ochs, Ruhr-University of Bochum, Germany
-% Version: 0.1
-% Date: 2007/01/05
-\documentclass{article}
-\usepackage{signalflowdiagram}
-\usepackage{macros}
-
-\begin{document}
-
-%
-% Basic placement example using my "from" command.
-%
-\begin{signalflow}{Placement example}
- \node[block] (bc) {center};
- \node[block] (bl) [left from=bc] {left};
- \node[block] (br) [right from=bc] {right};
- \node[block] (ba) [above from=bc] {above};
- \node[block] (bb) [below from=bc] {below};
- \node[block] (bal) [above left from=bc] {above\\left};
- \node[block] (bbl) [below left from=bc] {below\\left};
- \node[block] (bal) [above right from=bc] {above\\right};
- \node[block] (bbl) [below right from=bc] {below\\right};
-\end{signalflow}
-\end{document}