Why is everything doubled?

0 votes
asked Aug 12, 2023 in Question / help by anonymous
Why does this give two Alices and two Bobs:
@startuml
Bob -> Alice : hello
@enduml

2 Answers

0 votes
answered Aug 12, 2023 by EGR

Do you mean that the Bob and Alice objects are also at the bottom of the graph?... 

This is prevented by using skinparam style strictuml

@startuml
skinparam style strictuml
Bob -> Alice: hello
@enduml

Regards

0 votes
answered Aug 13, 2023 by kirchsth (6,660 points)

You can switch it off/on with  "hide/show footbox", e.g.

@startuml
hide footbox
Bob -> Alice : hello
@enduml

...