美文网首页
马克飞象流程图整理

马克飞象流程图整理

作者: Bill_Wang | 来源:发表于2016-08-01 18:20 被阅读1289次

    时序图

    语法

    实例

    Andrew->China: Says Hello
    Note right of China: China thinks\nabout it
    China-->Andrew: How are you?
    Andrew->>China: I am good thanks!
    
    Title: Here is a title
    A->B: Normal line
    B-->C: Dashed line
    C->>D: Open arrow
    D-->>A: Dashed open arrow
    
    Note left of A: Note to the\n left of A
    Note right of A: Note to the\n right of A
    Note over A: Note over A
    Note over A,B: Note over both A and B
    

    流程图

    语法

    1. 定义元素
      tag=>type: content:>url

    2. 连接元素

    c2(yes)->io->e
    c2(no)->op2->e

    标签

    start
    end
    operation
    subroutine
    condition
    inputoutput

    Example

    st=>start: Start|past:>http://www.google.com[blank]
    e=>end: End:>http://www.google.com
    op1=>operation: My Operation|past
    op2=>operation: Stuff|current
    sub1=>subroutine: My Subroutine|invalid
    cond=>condition: Yes 
    or No?|approved:>http://www.baidu.com
    c2=>condition: Good idea|rejected
    io=>inputoutput: catch something...|request
    
    st->op1(right)->cond
    cond(yes, right)->c2
    cond(no)->sub1(left)->op1
    c2(yes)->io->e
    c2(no)->op2->e
    

    相关文章

      网友评论

          本文标题:马克飞象流程图整理

          本文链接:https://www.haomeiwen.com/subject/xkxfsttx.html