location: Diff for "plantuml"

Institute of Mathematics - PublicMathWiki:

Differences between revisions 1 and 7 (spanning 6 versions)
Revision 1 as of 2025-03-01 13:16:03
Size: 25
Editor: crose
Comment:
Revision 7 as of 2025-03-02 13:03:03
Size: 815
Editor: crose
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
Describe plantuml here. = PlantUML =

Create diagrams based on text files.

 * [[https://en.wikipedia.org/wiki/PlantUML|Wikipedia]]
 * [[https://pdf.plantuml.net/1.2020.22/PlantUML_Language_Reference_Guide_en.pdf|Reference]]
 * Online https://www.plantuml.com/plantuml/uml
 * https://real-world-plantuml.com/
 * https://github.com/joelparkerhenderson/plantuml-examples

= Example =


 * `gedit example.plantuml` {{{
@startuml
Alice->Bob : hello
note left: this is a first note
Bob->Alice : ok
note right: this is another note
Bob->Bob : I am thinking
note left
a note
can also be defined
on several lines
end note
@enduml
}}}

 * Create the diagram [[https://www.plantuml.com/plantuml/uml|online]] or in thinlinc via terminal: {{{
$ pantuml example.plantuml
}}}

 * Picture:

{{attachment:plantuml.png}}

PlantUML

Create diagrams based on text files.

Example

  • gedit example.plantuml

    @startuml
    Alice->Bob : hello
    note left: this is a first note
    Bob->Alice : ok
    note right: this is another note
    Bob->Bob : I am thinking
    note left
    a note
    can also be defined
    on several lines
    end note
    @enduml
  • Create the diagram online or in thinlinc via terminal:

    $ pantuml example.plantuml
  • Picture:

plantuml.png

PublicMathWiki: plantuml (last edited 2025-03-02 13:03:28 by crose)