summaryrefslogtreecommitdiff
path: root/graphics/pgf/contrib/string-diagrams/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/pgf/contrib/string-diagrams/README.md')
-rw-r--r--graphics/pgf/contrib/string-diagrams/README.md22
1 files changed, 0 insertions, 22 deletions
diff --git a/graphics/pgf/contrib/string-diagrams/README.md b/graphics/pgf/contrib/string-diagrams/README.md
index fc1505021a..ef972a0bb7 100644
--- a/graphics/pgf/contrib/string-diagrams/README.md
+++ b/graphics/pgf/contrib/string-diagrams/README.md
@@ -31,28 +31,6 @@ For those who always live on the edge, unreleased versions are available on the
### Usage
-After including the package in your preamble, you can craft your string diagrams in a `tikzpicture` environment:
-
-```latex
-\usepackage{string-diagrams}
-
-%...
-
-\begin{tikzpicture}
- \node[box] (a) {a};
- \node[box] (b) at (0,-2) {b};
- \node[dot] (x) at (1,-1) {};
- \node[dot] (y) at (-1,-1) {};
- \wires[]{
- a = { east = x.north },
- b = { east0 = x.south },
- y = { north = a.west1, south = b.west },
- }{
- a.west0, b.east1, x.east, y.west
- }
-\end{tikzpicture}
-```
-
Detailed instructions are available in the [documentation](http://mirrors.ctan.org/graphics/pgf/contrib/string-diagrams/string-diagrams.pdf).
## Contributing