First-line paragraph indenting in PDFs using R Markdown

后端 未结 3 1226
深忆病人
深忆病人 2021-01-02 08:49

I\'m hoping this is a question with a simple answer. I am using Rmarkdown/knitr to author a PDF document (in RStudio). Many LaTeX classes (like article) automatically indent

3条回答
  •  萌比男神i
    2021-01-02 09:20

    The default Pandoc template includes an indent argument. If set to true, paragraphs start with an indentation.

    ----
    title: "Title"
    author: "Me"
    output: pdf_document
    indent: true
    ----
    

提交回复
热议问题