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

Материал из Поле цифровой дидактики
Нет описания правки
 
(не показаны 4 промежуточные версии этого же участника)
Строка 95: Строка 95:
== 3 ==
== 3 ==
<graphviz>
<graphviz>
digraph activity_system {
digraph activity_system {
size = "10,10";
   rankdir=TB;
   rankdir=TB;
   node [shape=ellipse, fontsize=10];
   node [shape=ellipse, fontsize=10];
Строка 149: Строка 151:
}
}
</graphviz>
</graphviz>
== PlantUML ==
<uml>
@startuml
!define SHADOWGRADIENT 0xf0f0f0 0xd0d0d0
!define SHADOW 0x808080
skinparam monochrome true
class "Subject" as subject {
  + Student 1
  + Student 2
}
class "Object" as object {
  + Learning Material
}
class "Community" as community {
  + Teachers, Peers, Parents
}
class "Tools" as tools {
  + Textbooks, Online Learning Platforms, Communication Tools
}
class "Rules" as rules {
  + Curriculum, School Policies, Social Norms
}
class "Outcome" as outcome {
  + Knowledge, Skills, Attitudes
}
subject -- object
community -- object
tools -- object
rules -- object
outcome -- object
object -- subject
subject -- community
community -- subject
object -- tools
tools -- object
object -- rules
rules -- object
object -- outcome
outcome -- object
object -- object
@enduml
</uml>
== MerMaid ==
{{#mermaid:graph TD
  subgraph Subject
    Student1((Student 1))
    Student2((Student 2))
  end
  subgraph Object
    LearningMaterial
  end
  subgraph Community
    TeachersPeersParents
  end
  subgraph Tools
    TextbooksOnlineLearningPlatformsCommunicationTools
  end
  subgraph Rules
    CurriculumSchoolPoliciesSocialNorms
  end
  subgraph Outcome
    KnowledgeSkillsAttitudes
  end
  Student1 --> LearningMaterial
  Student2 --> LearningMaterial
  LearningMaterial --> Student1
  LearningMaterial --> Student2
  LearningMaterial --> TeachersPeersParents
  TeachersPeersParents --> LearningMaterial
  LearningMaterial --> TextbooksOnlineLearningPlatformsCommunicationTools
  TextbooksOnlineLearningPlatformsCommunicationTools --> LearningMaterial
  LearningMaterial --> CurriculumSchoolPoliciesSocialNorms
  CurriculumSchoolPoliciesSocialNorms --> LearningMaterial
  LearningMaterial --> KnowledgeSkillsAttitudes
  KnowledgeSkillsAttitudes --> LearningMaterial
}}

Текущая версия от 20:51, 14 апреля 2024


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

1

2

3

PlantUML

MerMaid