美文网首页
2019-06-12

2019-06-12

作者: njwxy | 来源:发表于2019-06-12 14:34 被阅读0次

    及我那天

    十九时间的那一天

    Markdown tools: Typora

    sequenceDiagram
        participant Alice
        participant Bob
        Alice->John: Hello John, how are you?
        loop Healthcheck
            John->John: Fight against hypochondria
        end
        Note right of John: Rational thoughts <br/>prevail...
        John-->Alice: Great!
        John->Bob: How about you?
        Bob-->John: Jolly good!
    
    gantt
            dateFormat  YYYY-MM-DD
            title Adding GANTT diagram functionality to mermaid
            section A section
            Completed task            :done,    des1, 2014-01-06,2014-01-08
            Active task               :active,  des2, 2014-01-09, 3d
            Future task               :         des3, after des2, 5d
            Future task2               :         des4, after des3, 5d
            section Critical tasks
            Completed task in the critical line :crit, done, 2014-01-06,24h
            Implement parser and jison          :crit, done, after des1, 2d
            Create tests for parser             :crit, active, 3d
            Future task in critical line        :crit, 5d
            Create tests for renderer           :2d
            Add to mermaid                      :1d
    
    graph LR
    A-->B((test server))
    C-->|set number|B
    B-->E{function}
    
    graph TD
        subgraph SVN Architecture
        client1-->|read / write|SVN((SVN server))
        client2-->|read only|SVN
        client3-->|read / write|SVN
        client4-->|read only|SVN
        client5(...)-->SVN
        SVN---|store the data|sharedrive
        end
    
    graph TD
        A-->B
        A-->C
        B-->D
        C-->D
    
    graph TD
        A[Christermas]-->B(Shopping)
        B --> C{let me think}
        C --> |one| D[laptop]
        C --> |two| E[ipthon]
        C --> |three| F[car]
    

    MATH

    \frac{7x+5}{1+y^2}
    
    E = mc^2
    
    x=\frac{-b\pm\sqrt{b^2-4ac}}{2a}
    

    $y = x^2$

    $\dfrac{\dfrac{1}{2}[1-(\dfrac{1}{2}^n)]}{1-\dfrac{1}{2}}=s_n$

    \oint_C x^3dx+4y^2dy
    
    \int_1^\infty\dfrac{1}{x^2}dx
    
    
    \sum_{m=1}^\infty\sum_{n=1}^\infty\frac{m^2n}{3^m(m3^n+n3^m)}
    
    \phi_n(\kappa) = \frac{1}{4\pi^2\kappa^2}\int_0^\infty\frac{\sin(\kappa R)}{\kappa R}\frac{\partial}{\partial R}[R^2 \frac{\partial D_n(R)}{\partial R}]dR
    
    
    
    
    
    
    
    graph LR
    A-->B
    
    sequenceDiagram
    A->>B: How are you?
    A->>B: Give me a message
    B->>A: Great!
    

    To do list

    • [x] 已完成项目
      • [ ] 已完成1
      • [ ] 已完成2

    h1

    h2

    h3

    h4

    h5
    h6

    这是加粗的文字

    这是倾斜的文字`

    这是斜体加粗的文字

    这是加删除线的文字

    这是引用的内容

    这是引用的内容

    这是引用的内容





    blockchain
    姓名 技能 排行
    刘备 大哥
    关羽 二哥
    张飞 三弟

    Table

    Item num
    A 3
    B 5

    简书
    百度

    • 列表内容
      • 列表1
      • 列表2
      • 列表3
    • 列表内容
    • 列表内容

    注意:- + * 跟内容之间都要有一个空格

    1. 列表内容

      1. 内容1
      2. 内容2
        1. 内容bb
        2. 内容存储
    2. 列表内容

    3. 列表内容

    注意:序号跟内容之间要有空格

        function fun(){
             echo "这是一句非常牛逼的代码";
        }
        fun();
    
        for(int i=0;i<10;i++){
            write(i);
        }
        
    

    create database hero;

    相关文章

      网友评论

          本文标题:2019-06-12

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