Nadomesti črke z zgoščenimi vrednostmi

This commit is contained in:
Martin Vuk 2025-12-17 18:05:50 +01:00
parent 9043f60ee1
commit b5b185c240
2 changed files with 1023 additions and 946 deletions

File diff suppressed because it is too large Load diff

View file

@ -65,14 +65,15 @@ Vsak *vnos* je *vozlišče* v grafu. Vsak vnos izhaja iz enega ali več staršev
#figure(
diagram(node-stroke: 1pt, node-shape: pill,
{
let (Ah, Bh, Ch, Dh, Eh, Fh, Gh) = ("d93434", "2ca420", "dd0d98", "28782c", "710310", "3f2922","d2a671")
let (A, B, C, D, E, F, G) = ((0, 0), (1, 0), (2, 0), (3, 0), (4, 0), (2, 1), (3, 1))
node(A, "A")
node(B, "B")
node(C, "C")
node(D, "D")
node(E, "E")
node(F, "F")
node(G, "G")
node(A, raw(Ah))
node(B, raw(Bh))
node(C, raw(Ch))
node(D, raw(Dh))
node(E, raw(Eh))
node(F, raw(Fh))
node(G, raw(Gh))
edge(B, A, "->")
edge(C, B, "->")
edge(D, C, "->")