4

Bookdown offers some options for internationalization of the HTML output, i.e. translation of certain keywords (see Bookdown Internationalization):

 language:
   ui:
     edit: Edit
     chapter_name: ''

Is there an option to change the header of the references/bibliography section as well, similar to the chapter_name variable? The header is normally called "References".

Michael
  • 43
  • 2

2 Answers2

1

For HTML output you have to create that header manually (c.f. the documentation). So you can easily use the name you prefer, e.g.:

`r if (knitr::is_html_output()) '# Literatur {-}'`
Ralf Stubner
  • 26,263
  • 3
  • 40
  • 75
0

In order to change the headline for references inside a chapter or section you can alter the skeleton.R file.

Pindar
  • 51
  • 6