note left of actor: 注释内容 //actor是通过participant定义的
note right of actor: 注释内容 //actor是通过participant定义的
note over actor: 注释内容 //actor是通过participant定义的
note over actorA, actorB: 注释内容 //actorA, actorB是通过participant定义的
注意: 冒号前面不要有空格
例子
```sequence
title : Example of Sequence Diagram
participant ActorA
participant Actor B
participant ActorC as C
participant Actor D as D
ActorA->Actor B: line1
Actor B-->C: line2
C->>D: line3
D->>ActorA: line4
note left of ActorA: note left of ActorA
note right of Actor B: note left of Actor B
note over C:note over ActorC
note over C, D: note over ActorC and Actor D
```