2
1

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 1 year has passed since last update.

【PlantUML】フォントサイズを変更する方法

Last updated at Posted at 2023-02-03

デフォルトのフォントサイズ

@startuml 
hide circle

entity "<b>users" as users {
+<u>id : integer [PK]
--
name : string
email : string
password : string
avatar : string
created_at : datetime <now>
updated_at : datetime <now>
}

@enduml

全体のフォントサイズを変更する

sample.pu
@startuml 
skinparam ClassFontSize 30
hide circle

entity "<b>users" as users {
+<u>id : integer [PK]
--
name : string
email : string
password : string
avatar : string
created_at : datetime <now>
updated_at : datetime <now>
}

@enduml

部分的に変更する

sample.pu
@startuml 
hide circle

entity "<b><size:30>users" as users {
+<u>id : integer [PK]
--
name : string
email : string
password : string
avatar : string
created_at : datetime <now>
updated_at : datetime <now>
}

@enduml
2
1
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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?