Set double spacing and line numbers when converting from Markdown to PDF with pandoc

后端 未结 3 571
自闭症患者
自闭症患者 2021-01-31 05:48

I am using markdown & pandoc for scientific writing, I know I can change margins of the final pdf using

Set margin size when converting from Markdown to PDF with pa

3条回答
  •  北恋
    北恋 (楼主)
    2021-01-31 06:05

    In more recent version of Pandoc, you can use a YAML header and include a bunch of metadata in that, instead of using options on the command line. So, for instance, you can put this at the top of your .md file:

    ---
    title: The Document Title
    author:
        - Your Name
        - Co Author
    date: \today{}
    geometry: margin=2cm
    header-includes:
        - \usepackage{setspace}
        - \doublespacing
        - \usepackage{lineno}
        - \linenumbers
    ---
    
    Document Text
    

    and pandoc will read those options and apply them automatically.

提交回复
热议问题