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

Материал из Поле цифровой дидактики
Новая страница: «{{Diagram |Field_of_knowledge=Управление, Обществознание |Environment=Graphviz, PerplexityAI }} == 1 == <graphviz> digraph activity_system { rankdir=TB; 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";...»
 
Строка 42: Строка 42:
   rules -> division_of_labor [arrowhead=vee];
   rules -> division_of_labor [arrowhead=vee];
   tools -> object [arrowhead=vee];
   tools -> object [arrowhead=vee];
  outcome -> object [arrowhead=vee];
}
</graphviz>
== 2 ==
<graphviz>
digraph activity_system {
  rankdir=TB;
  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];
   outcome -> object [arrowhead=vee];
}
}
</graphviz>
</graphviz>

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


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

1

2