forked from jluttine/tikz-bayesnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtikzlibrarybayesnet.code.tex
312 lines (281 loc) · 9.72 KB
/
tikzlibrarybayesnet.code.tex
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
% tikzlibrary.code.tex
%
% Copyright 2010-2011 by Laura Dietz
% Copyright 2012 by Jaakko Luttinen
%
% This file may be distributed and/or modified
%
% 1. under the LaTeX Project Public License and/or
% 2. under the GNU General Public License.
%
% See the files LICENSE_LPPL and LICENSE_GPL for more details.
% Load other libraries
\usetikzlibrary{shapes,decorations,shadows}
\usetikzlibrary{decorations.pathmorphing}
\usetikzlibrary{decorations.shapes}
\usetikzlibrary{fadings}
\usetikzlibrary{patterns}
\usetikzlibrary{calc}
\usetikzlibrary{decorations.text}
\usetikzlibrary{decorations.footprints}
\usetikzlibrary{decorations.fractals}
\usetikzlibrary{shapes.gates.logic.IEC}
\usetikzlibrary{shapes.gates.logic.US}
\usetikzlibrary{fit,chains}
\usetikzlibrary{positioning}
\usepgflibrary{shapes}
\usetikzlibrary{scopes}
\usetikzlibrary{arrows}
\usetikzlibrary{backgrounds}
% Latent node
\tikzstyle{latent} = [circle,fill=white,draw=black,inner sep=1pt,
minimum size=20pt, font=\fontsize{10}{10}\selectfont, node distance=1]
% Observed node
\tikzstyle{obs} = [latent,fill=gray!25]
% Constant node
\tikzstyle{const} = [rectangle, inner sep=0pt, node distance=1]
% Factor node
\tikzstyle{factor} = [rectangle, fill=black,minimum size=5pt, inner
sep=0pt, node distance=0.4, font=\small]
% Deterministic node
\tikzstyle{det} = [latent, diamond]
% Plate node
\tikzstyle{plate} = [draw, rectangle, rounded corners, fit=#1]
% Invisible wrapper node
\tikzstyle{wrap} = [inner sep=0pt, fit=#1]
% Gate
\tikzstyle{gate} = [draw, rectangle, dashed, fit=#1]
% Caption node
\tikzstyle{caption} = [font=\footnotesize, node distance=0] %
\tikzstyle{plate caption} = [caption, node distance=0, inner sep=0pt,
below left=5pt and 0pt of #1.south east] %
\tikzstyle{factor caption} = [caption] %
\tikzstyle{every label} += [caption] %
\tikzset{>={triangle 45}}
%\pgfdeclarelayer{b}
%\pgfdeclarelayer{f}
%\pgfsetlayers{b,main,f}
% \factoredge [options] {inputs} {factors} {outputs}
\newcommand{\factoredge}[4][]{ %
% Connect all nodes #2 to all nodes #4 via all factors #3.
\foreach \f in {#3} { %
\foreach \x in {#2} { %
\draw[-,#1] (\x) edge[-] (\f) ;%
} ;
\foreach \y in {#4} { %
\draw[->,#1] (\f) -- (\y) ;%
} ;
} ;
%\draw[<-,#1] (#2) -- (#2-factor) edge[-] (#3) ;
}
% \edge [options] {inputs} {outputs}
\newcommand{\edge}[3][]{ %
% Connect all nodes #2 to all nodes #3.
\foreach \x in {#2} { %
\foreach \y in {#3} { %
\draw[->,#1] (\x) -- (\y) ;%
} ;
} ;
}
% \factor [options] {name} {caption} {inputs} {outputs}
\newcommand{\factor}[5][]{ %
% Draw the factor node. Use alias to allow empty names.
\node[factor, label={[name=#2-caption]#3}, name=#2, alias=#2-alias,
#1] {} ; %
% Connect all inputs to outputs via this factor
\factoredge {#4} {#2-alias} {#5} ; %
}
% \plate [options] {name} {fitlist} {caption}
\newcommand{\plate}[4][]{ %
\node[wrap=#3] (#2-wrap) {}; %
\node[plate caption=#2-wrap] (#2-caption) {#4}; %
\node[plate=(#2-wrap)(#2-caption), #1] (#2) {}; %
}
% \gate [options] {name} {fitlist} {inputs}
\newcommand{\gate}[4][]{ %
\node[gate=#3, name=#2, #1, alias=#2-alias] {}; %
\foreach \x in {#4} { %
\draw [-*,thick] (\x) -- (#2-alias); %
} ;%
}
% \vgate {name} {fitlist-left} {caption-left} {fitlist-right}
% {caption-right} {inputs}
\newcommand{\vgate}[6]{ %
% Wrap the left and right parts
\node[wrap=#2] (#1-left) {}; %
\node[wrap=#4] (#1-right) {}; %
% Draw the gate
\node[gate=(#1-left)(#1-right)] (#1) {}; %
% Add captions
\node[caption, below left=of #1.north ] (#1-left-caption)
{#3}; %
\node[caption, below right=of #1.north ] (#1-right-caption)
{#5}; %
% Draw middle separation
\draw [-, dashed] (#1.north) -- (#1.south); %
% Draw inputs
\foreach \x in {#6} { %
\draw [-*,thick] (\x) -- (#1); %
} ;%
}
% \hgate {name} {fitlist-top} {caption-top} {fitlist-bottom}
% {caption-bottom} {inputs}
\newcommand{\hgate}[6]{ %
% Wrap the left and right parts
\node[wrap=#2] (#1-top) {}; %
\node[wrap=#4] (#1-bottom) {}; %
% Draw the gate
\node[gate=(#1-top)(#1-bottom)] (#1) {}; %
% Add captions
\node[caption, above right=of #1.west ] (#1-top-caption)
{#3}; %
\node[caption, below right=of #1.west ] (#1-bottom-caption)
{#5}; %
% Draw middle separation
\draw [-, dashed] (#1.west) -- (#1.east); %
% Draw inputs
\foreach \x in {#6} { %
\draw [-*,thick] (\x) -- (#1); %
} ;%
}
\endinput
% % shapename, fitlist, caption, pos
% \newcommand{\plate}[4]{ %
% \begin{pgfonlayer}{b}
% \node (invis#1) [draw, color=white, inner sep=1pt, rectangle,
% fit=#2] {};
% \end{pgfonlayer}
% \begin{pgfonlayer}{f}
% \node (capt#1) [ below left=0 pt of invis#1.south east,
% xshift=2pt,yshift=1pt] {\footnotesize{#3}}; %
% \node (#1) [draw,inner sep=2pt, rectangle,fit=(invis#1)
% (capt#1),#4] {}; %
% \end{pgfonlayer}
% }
% \newcommand{\shiftedplate}[5]{ %
% \begin{pgfonlayer}{b}
% \node (invis#1) [draw, color=white, inner sep=0pt, rectangle,
% fit=#2] {};
% \end{pgfonlayer}
% \begin{pgfonlayer}{f}
% \node (capt#1) [#5, xshift=2pt] {\footnotesize{#3}}; %
% \node (#1) [draw,inner sep=2pt, rectangle, fit=(invis#1) (capt#1),
% #4] {}; %
% \end{pgfonlayer}
% }
% %shapename, pos, caption, in1, in2, out, captpos
% \newcommand{\twofactor}[7]{ %
% \node (#1) [factor] at #2 {};%
% \node (capt#1) [#7 of #1]{\footnotesize{#3}}; %
% \draw [-] (#4) -- (#1) ; %
% \draw [-] (#5) -- (#1) ; %
% \draw [->,thick] (#1) -- (#6); %
% }
% %shapename, pos, caption, in, out, captpos
% \newcommand{\factorexperimental}[6]{ %
% \node [factor] (#1) at #2 {}; %
% \node (#1-caption) [#6] at #2 {\footnotesize{#3}}; %
% \draw [-] (#4) -- (#1) ; %
% \draw [->,thick] (#1) -- (#5); %
% }
% % shapename, pos, caption, in, out, captpos
% \newcommand{\factor}[6]{ %
% \node (#1) [factor] at #2 {}; %
% \node (#1-caption) [#6 of #1]{\footnotesize{#3}}; %
% \draw [-] (#4) -- (#1) ; %
% \draw [->,thick] (#1) -- (#5); %
% }
% % name, --, caption, pos
% \newcommand{\nofactor}[4]{ %
% \node (#1) [factor, #2] {}; %
% \node (capt#1) [#4 of #1]{\footnotesize{#3}}; %
% }
% %shapename, fitlist, caption
% \newcommand{\namedgate}[3]{ %
% \begin{pgfonlayer}{b}
% \node (invisgate#1) [rectangle, draw, color=white, fit=#2] {};
% \end{pgfonlayer}
% \node (gatecapt#1) [ above right=0 pt of invisgate#1.north west,
% xshift=-1pt ] {\footnotesize{#3}}; %
% \node (#1) [rectangle,draw,dashed, inner sep=2pt,
% fit=(invisgate#1)(gatecapt#1)]{}; %
% }
% %shapename, fitlist, caption
% \newcommand{\gate}[3]{ %
% \node (#1) [rectangle,draw,dashed, inner sep=2pt, fit=#2]{};
% }
% %shapename, fitlist1, fitlist2, caption1, caption2
% \newcommand{\vertgate}[5]{ %
% \begin{pgfonlayer}{b}
% \node (invisgateleft#1) [rectangle, draw, color=white, fit=#2]
% {}; %
% \node (invisgateright#1) [rectangle, draw, color=white, fit=#4]
% {}; %
% \end{pgfonlayer}
% \node (gatecaptleft#1) [ above left=0 pt of invisgateleft#1.north
% east, xshift=1pt ]{\footnotesize{#3}} ; %
% \node (gatecaptright#1) [ above right=0 pt of invisgateright#1.north
% west, xshift=-1pt ] {\footnotesize{#5}}; %
% \node (#1) [rectangle,draw,dashed, inner sep=2pt,
% fit=(invisgateleft#1)(gatecaptleft#1)(invisgateright#1)(gatecaptright#1)]{}; %
% \draw [-, dashed] (#1.north) -- (#1.south); %
% }
% \newcommand{\vertgateSpec}[5]{
% \begin{pgfonlayer}{b}
% \node (invisgateleft#1) [rectangle, draw, color=white, fit=#2] {}; %
% \node (invisgateright#1) [rectangle, draw, color=white, fit=#4] {}; %
% \end{pgfonlayer}
% \node (gatecaptleft#1) [ above left=0 pt of invisgateleft#1.north
% east, xshift=1pt ]{\footnotesize{#3}}; %
% \node (gatecaptright#1) [ above right=0 pt of invisgateright#1.north
% west, xshift=-1pt ] {\footnotesize{#5}}; %
% \node (#1) [rectangle,draw,dashed, inner sep=2pt,
% fit=(invisgateleft#1)(gatecaptleft#1)(invisgateright#1)(gatecaptright#1)]{}; %
% \draw [-, dashed] (#1.70) -- (#1.290); %
% }
% \newcommand{\horgate}[5]{
% \begin{pgfonlayer}{b}
% \node (invisgateleft#1) [rectangle, draw, color=white, fit=#2]
% {}; %
% \node (invisgateright#1) [rectangle, draw, color=white, fit=#4]
% {}; %
% \end{pgfonlayer}
% \node (gatecaptleft#1) [ above right=0 pt of invisgateleft#1.south
% west, xshift=1pt ]{\footnotesize{#3}}; %
% \node (gatecaptright#1) [ below right=0 pt of invisgateright#1.north
% west, xshift=-1pt ] {\footnotesize{#5}}; %
% \node (#1) [rectangle,draw,dashed, inner sep=2pt,
% fit=(invisgateleft#1)(gatecaptleft#1)(invisgateright#1)(gatecaptright#1)]{}; %
% \draw [-, dashed] (#1.west) -- (#1.east); %
% }
% \newcommand{\horogate}[5]{
% \begin{pgfonlayer}{b}
% \node (invisgateleft#1) [rectangle, draw, color=white, fit=#2]
% {}; %
% \node (invisgateright#1) [rectangle, draw, color=white, fit=#4]
% {}; %
% \end{pgfonlayer}
% \node (#1) [rectangle,draw,dashed, inner sep=2pt,
% fit=(invisgateleft#1)(invisgateright#1)]{}; %
% \node (gatecaptleft#1) [ above right=0 pt of #1.west, xshift=0pt
% ]{\footnotesize{#3}}; %
% \node (gatecaptright#1) [ below right=0 pt of #1.west, xshift=0pt ]
% {\footnotesize{#5}}; %
% \draw [-, dashed] (#1.west) -- (#1.east); %
% }
% \newcommand{\vertogate}[5]{
% \begin{pgfonlayer}{b}
% \node (invisgateleft#1) [rectangle, draw, color=white, fit=#2]
% {}; %
% \node (invisgateright#1) [rectangle, draw, color=white, fit=#4]
% {}; %
% \end{pgfonlayer}
% \node (#1) [rectangle,draw,dashed, inner sep=2pt,
% fit=(invisgateleft#1)(invisgateright#1)]{}; %
% \node (gatecaptleft#1) [ below left=0 pt of #1.north, xshift=0pt
% ]{\footnotesize{#3}}; %
% \node (gatecaptright#1) [ below right=0 pt of #1.north, xshift=0pt ]
% {\footnotesize{#5}}; %
% \draw [-, dashed] (#1.north) -- (#1.south); %
% }
% \endinput