How to remove heading numbers in Jupyter during pdf conversion?

前端 未结 3 1146
说谎
说谎 2020-12-28 14:20

When I use the heading tags (# ##, etc) using markdown, they are always converted to numbered sections during pdf-latex conversion.

How to indicate unnumbered headin

3条回答
  •  独厮守ぢ
    2020-12-28 15:09

    You can write an unnumbered heading by appending {-} or {.unnumbered} to the Markdown cell, e.g.:

    Heading {-}
    

    The output is a heading without a number, like so:

    Heading

    This is documented in Pandoc's Markdown which is an extended and slightly revised version of the original Markdown syntax.

提交回复
热议问题