1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
% !TeX root = tikz-ext-manual.tex
% !TeX spellcheck = en_US
% Copyright 2022 by Qrrbrbirlbel
%
% This file may be distributed and/or modified
%
% 1. under the LaTeX Project Public License and/or
% 2. under the GNU Free Documentation License.
%
\section{Nodes}
\begin{tikzlibrary}{ext.nodes}
This library extends \tikzname's functionalities when it comes to nodes.
\inspiration{NodesOnLine-Q, NodesOnCurve-Q}{NodesOnLine-A, NodesOnCurve-A}
\end{tikzlibrary}
\begin{multicols}{2}
\subsection{Pic as a node}
\begin{key}{/tikz/pic=\opt{\meta{boolean}} (default true, initially false)}
This key allows one to use a pic where usually only nodes are accepted,
for example as a label.
\begin{codeexample}[preamble=\usetikzlibrary{ext.nodes, ext.misc}]
\begin{tikzpicture}[
slsl/.pic={\draw(-2pt, 1.5pt)--( 2pt, .5pt)
( 2pt,-1.5pt)--(-2pt,-.5pt);}]
\node[
draw, minimum width=3cm, minimum height=1cm,
label={[pic ] east:slsl},
label={[pic, rotate= 90]north:slsl},
label={[pic ] west:slsl},
label={[pic, rotate=-90]south:slsl}]{};
\end{tikzpicture}
\end{codeexample}
\end{key}
\subsection{Nodes on paths}
When nodes are placed along paths they don't interrupt
the path at that place.
The decoration \referenceLibraryandIndexO{markings}
and its \referenceKeyandIndexO[/pgf/decoration/]{mark connection node}
key can help but only works for straight paths and
doesn't play nicely with arrow tips.
This library provides alternatives.
These are separated into straight paths, i.\,e. \referencePathOperationandIndexO{--},
and everything else (including any |to path|).
\subsubsection{Nodes on Lines}
\begin{stylekey}{/tikz/node on line=\opt{\meta{anchor specification}} (default |\{\}|)}
This installs a \referenceKeyandIndexO{to path} that places \emph{one}
node along a straight line but connect the line with it.
This allows a node to be placed \emph{on} a straight line without having to
use |fill = white| or similar tricks to make the line disappear
beneath the node.
The optional \meta{anchor specification} allows to specify the
anchors to which the line should connect.
It allows one or two anchors divided by | and | to be specified.
\end{stylekey}
\begin{stylekey}{/tikz/nodes on line}
This is similar to the previous key but allows
multiple nodes to be placed on a straight line
\emph{if} they are in the correct order (from start to target),
don't overlap with each other, the start or the target.
It allows \emph{no} anchor specification.
\end{stylekey}
\begin{codeexample}[preamble=\usetikzlibrary{ext.nodes, quotes}]
\tikz[inner sep=.15em, circle, nodes=draw, sloped]
\draw[ultra thick, ->, node on line] (0,0) to["0"] (1,1)
to["1"] (2,0)
to[nodes on line, "2.1" near start, "2.2", "2.3" near end] (5,1);
\end{codeexample}
\begin{codeexample}[preamble=\usetikzlibrary{ext.nodes, quotes}]
\tikz[inner sep=.15em, nodes=draw]
\draw[thick, ->, node on line=west and east]
(0,0) to["0"] (1,1)
to["1"] (2,0)
to["2"] (4,1);
\end{codeexample}
\subsubsection{Nodes on Curves}
The following keys need the \referenceLibraryandIndexO{intersections}
and the \referenceLibraryandIndexExt{spath3} \cite{spath3}
library to be loaded. They will not be automatically
loaded by this library.
Any \referenceKeyandIndexO[/pgf/]{outer sep} will be ignored.
If you can, use \texttt{fill=\meta{bg color}}
instead of these keys, it will be much faster and easier.
\begin{stylekey}{/tikz/nodes on curve=\meta{to path} (default line to)}
Similar to \referenceKeyandIndex{nodes on line}, this key allows
to have nodes on arbitrary paths.
This is not suitable for paths connecting nodes.
\end{stylekey}
\begin{stylekey}{/tikz/nodes on curve'=\meta{to path} (default line to)}
As above but suitable for connecting nodes.
\end{stylekey}
\begin{codeexample}[preamble=\usetikzlibrary{ext.nodes, intersections, quotes, spath3}]
\begin{tikzpicture}[ultra thick]
\node (A) at (0, 0) {A} ;
\node (B) at (3, 0) {B} ;
\draw [red, ->, nodes on curve'=bend left]
(A) to node[blue,draw]{label} (B)
to ["X" {sloped, near start},
"Z" {sloped, near end},
"Y"] (A);
\end{tikzpicture}
\end{codeexample}
\begin{codeexample}[preamble=\usetikzlibrary{ext.nodes, intersections, quotes, spath3}]
\tikz[inner sep=.15em, circle, nodes={draw, green}, sloped, ultra thick]
\draw[->, nodes on curve=bend left] (0,0) to["0"] (1,1)
to["1"] (2,0)
to["2" near start, "3", "4" near end] (4,1)
-- ++(down:1);
\end{codeexample}
\end{multicols}
|