8
19

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

エクセルでUMLを頑張るのはもう辞めよう!テキストベースでUMLが書ける♪

Last updated at Posted at 2016-11-30

概要

エクセルでUML図やフロー図を書くのがもー嫌で嫌で代替え案を探していました。
http://hige-sun.net/plantuml-on-atom/
こちらの記事を参考に(というかまるっと)追ってやった時のメモです。

前提

  • Mac
  • Atomがインストールされていること
  • javaがインストールされていること

plantUMLインストール

ココからPlantUML compiled Jarをダウンロードする
ダウンロードしたファイルplantuml.jarは、PlantUMLファイルを画像化する時に使います。

Atom pluginインストールと設定

atom pluginインストール

  • plantuml-viewer
  • language-plantuml

plantuml-viewer plugin設定

  • Charsetutf8にすること
  • 再起動(自分は再起動しないとViewが表示されませんでした)

サンプルコード

sample.pu
@startuml{you&i.png} 
you -> I : hello
I -> you : hello
|||
loop 1, 3
  you -> I : shall we dance?
end
|||
you <- I : sure, my pleasure♡
note right: oh! handsome guy♪
@enduml

ビューを表示する

Control+option+pでViewを表示する
スクリーンショット 2016-11-30 午後0.03.59.png

platUMLファイルを画像化する

java -jar plantuml.jar file/sample.pu

you&i.png画像ファイルができる

8
19
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
19

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?