Обсуждение:Социотехническая система: различия между версиями

Материал из Поле цифровой дидактики
Нет описания правки
Нет описания правки
Строка 1: Строка 1:
== T1 ==
<graphviz>
digraph G {
    // Node settings
        node [style=filled, fillcolor=black, shape=square, label=""]; A;
    node [style=filled, fillcolor=white, shape=circle, label=""]; B; C;
    // Edge settings
    edge [color=black]; // Default edge color
      edge [dir=both];
    A -> B [color=red]; // Red edge from A to B
    B -> C [color=black]; // Black edge from B to C
}
</graphviz>
== T2 ==
<graphviz>
<graphviz>
digraph HM {
digraph HM {
Строка 4: Строка 21:
edge [fontname="Helvetica,Arial,sans-serif"]
edge [fontname="Helvetica,Arial,sans-serif"]
node [shape=box, style=filled, color=black];  M1;  
node [shape=box, style=filled, color=black];  M1;  
node [shape=circle, style=filled, color=white, label="", penwidth = 1]; H1 ;
node [shape=circle, style=filled, fillcolor=white, label=""]; H1 ;
H1 -> M1 [label="H-M-interaction"];
H1 -> M1 [label="H-M-interaction"];


}
}
</graphviz>
</graphviz>

Версия от 21:06, 4 декабря 2024

T1

T2