Programming Self-Study Notebook

勉強したことを忘れないように! 思い出せるように!!

PlantUMLでマインドマップを書いてみた




Markdownファイル内で、PlantUMLの図を挿入することが増えそうなので自分用のチートシートを作成しておくこのにしました。

参考:配置図の構文と機能

見た目

記述内容

 ``` plantuml

@startmindmap

skinparam backgroundColor #eeffff
scale 600 width

<style>
mindmapDiagram {
    node {
        BackgroundColor White
        
    }
    arrow {
        LineStyle 2
        LineThickness 0.5
        LineColor #555555
    }
    :depth(1) {
      BackGroundColor white
      FontColor red
    }
    :depth(2) {
      BackGroundColor white
      FontColor Blue
    }
}
</style>

+_ 脊椎(セキツイ)動物
++_ 恒温(コウオン)動物
+++_ 哺乳類
++++[#lightgreen] 人
++++ クジラ
+++_ 鳥類
++++ ツバメ
++++ スズメ
++_ 変温(ヘンオン)動物
+++_ は虫類
++++ ヘビ
++++ トカゲ
+++_ 両生類
++++ カエル
+++_ 魚類
++++ マグロ
++++ サメ

@endmindmap

 ```