Marco
Marco

Reputation: 2837

What element is the left upper corner of a bookdown in R?

I create a bookdown and try to modify the left upper corner. I cannot find the name of this element.

Some authors have a short version of the title:

https://bookdown.org/yihui/bookdown/

enter image description here

Some have a logo (I also like to have this)

https://www.econometrics-with-r.org/

enter image description here

https://www.econometrics-with-r.org/

Some have skipped this features completely

https://bookdown.org/melissaksharp/STROBE_eduexpansion/

enter image description here

How can this be done? Thank you

Upvotes: 1

Views: 59

Answers (1)

Yihui Xie
Yihui Xie

Reputation: 30194

You can use the config option toc: before for bookdown::gitbook, e.g.,

bookdown::gitbook:
  config:
    toc:
      before: |
        <li><a href="...">My Awesome Book</a></li>
        <li><img src="..." /></li>

Upvotes: 3

Related Questions