Система деятельности (диаграмма): различия между версиями

Материал из Поле цифровой дидактики
Нет описания правки
Строка 47: Строка 47:


== 2 ==
== 2 ==
<graphviz>
digraph activity_system2 {
  rankdir=TB;
size="12,12";
  node [shape=ellipse, fontsize=10];
  subgraph cluster_subject {
    label="Subject";
    subject [label="Student"];
  }
  subgraph cluster_object {
    label="Object";
    object [label="Learning Material"];
  }
  subgraph cluster_community {
    label="Community";
    community [label="Teachers, Peers, Parents"];
  }
  subgraph cluster_tools {
    label="Tools";
    tools [label="Textbooks, Online Learning Platforms, Communication Tools"];
  }
  subgraph cluster_rules {
    label="Rules";
    rules [label="Curriculum, School Policies, Social Norms"];
  }
  subgraph cluster_outcome {
    label="Outcome";
    outcome [label="Knowledge, Skills, Attitudes"];
  }
  subject -> object [arrowhead=vee];
  community -> object [arrowhead=vee];
  tools -> object [arrowhead=vee];
  rules -> object [arrowhead=vee];
  outcome -> object [arrowhead=vee];
  object -> subject [arrowhead=vee];
  subject -> community [arrowhead=vee];
  community -> subject [arrowhead=vee];
  object -> tools [arrowhead=vee];
  tools -> object [arrowhead=vee];
  object -> rules [arrowhead=vee];
  rules -> object [arrowhead=vee];
  object -> outcome [arrowhead=vee];
  outcome -> object [arrowhead=vee];
}
</graphviz>
== 3 ==
<graphviz>
<graphviz>
digraph activity_system {
digraph activity_system {
Строка 53: Строка 100:
   subgraph cluster_subject {
   subgraph cluster_subject {
     label="Subject";
     label="Subject";
     subject [label="Student"];
     subject [label="Student 1"];
    subject1 [label="Student 2"];
   }
   }
   subgraph cluster_object {
   subgraph cluster_object {
Строка 83: Строка 131:
   subject -> community [arrowhead=vee];
   subject -> community [arrowhead=vee];
   community -> subject [arrowhead=vee];
   community -> subject [arrowhead=vee];
  object -> tools [arrowhead=vee];
  tools -> object [arrowhead=vee];
  object -> rules [arrowhead=vee];
  rules -> object [arrowhead=vee];
  object -> outcome [arrowhead=vee];
  outcome -> object [arrowhead=vee];
  subject1 -> object [arrowhead=vee];
  object -> subject1 [arrowhead=vee];
  subject1 -> community [arrowhead=vee];
  community -> subject1 [arrowhead=vee];
   object -> tools [arrowhead=vee];
   object -> tools [arrowhead=vee];
   tools -> object [arrowhead=vee];
   tools -> object [arrowhead=vee];

Версия от 20:20, 14 апреля 2024


Описание
Область знаний Управление, Обществознание
Среды для создания диаграммы: Graphviz, PerplexityAI

1

2

3