RMarkdown: How to change headline in table of contents in R Markdown?

后端 未结 3 885
误落风尘
误落风尘 2021-02-19 06:50

When I\'m using the toc: yes command, the document contains \"Content\" as the headline of the table of contents. Due to the fact that I want to write this document

相关标签:
3条回答
  • 2021-02-19 07:20

    You can also make use of babel simply specifying in the YAML header the "lang" field. For example:

    ---
    lang: de-DE
    title: "Ausgefallener Titel"
    toc: 1
    ---
    

    I.e., you can use the "lang" field and specify your desired language-and-country code. For example, de-DE, en-US, etc. (Of course, the corresponding babel package for that language should be installed, or you'll get an error).

    0 讨论(0)
  • 2021-02-19 07:28

    With this YAML header that includes LaTeX-Package babel, it works for me:

    ---
    title: "TOC in German"
    header-includes:
      - \usepackage[ngerman]{babel}
    output: 
      pdf_document:
        toc: true
        number_sections: yes
    ---
    
    0 讨论(0)
  • 2021-02-19 07:31

    This in your YAML should also work:

    header-includes: \renewcommand{\contentsname}{Inhalt}

    0 讨论(0)
提交回复
热议问题