美文网首页
【Jupyter】Markdown

【Jupyter】Markdown

作者: 盐果儿 | 来源:发表于2022-06-02 03:40 被阅读0次

    Grammar

    标题

    # 一阶标题

    ## 二阶标题

    ### 三阶标题

    #### 四阶标题(效果相当于加粗)

    Bullet point

    *

    Ordered point

    1.

    加粗

    **content**

    阴影 shadow

    `content`

    代码块 code block

    ```bash/python

    git clone [url]

    ```

    文字添加颜色(实际上就是变成公式,用latex语法)

    $\color{red}{content}$


    Shortcut

    ctrl+enter 执行当前单元

    alt+enter 执行当前单元,并在下方插入新单元

    Reference:

    https://www.ibm.com/docs/en/watson-studio-local/1.2.3?topic=notebooks-markdown-jupyter-cheatsheet

    相关文章

      网友评论

          本文标题:【Jupyter】Markdown

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