我想画一张如下所示的图表。
我的原始代码是:
@startuml
start
if (c1) then (YES)
:A;
else (NO)
if (C2) then (NO)
:A;
else (NO)
:C;
endif
endif
stop
@enduml
在新的plantUml语法中似乎没有别名语法。我发现旧的语法是--> "some activity" as render
。我怎么能提到同样的活动呢?
发布于 2022-08-19 14:54:48
也许你已经看到这个实验特征了?
@startuml
start
if (c1) then (YES)
label sp_lab0
label A
:A;
else (NO)
if (C2) then (NO)
label sp_lab1
goto A
else (NO)
:C;
endif
endif
stop
@enduml
https://stackoverflow.com/questions/51743362
复制相似问题