rstudio / revealjs

R Markdown Format for reveal.js Presentations
Other
325 stars 86 forks source link

Option to hide or change the navigation arrows on bottom right of slides #110

Closed rleyvasal closed 2 years ago

rleyvasal commented 2 years ago

I would like to have the option to hide or change the shape of the navigation arrows on the bottom right of the slides to increase my slide presentation area.

I did not find any information about it on the bookdown documentation.

Default navigation Arrows shown below:

navigation_arrows
cderv commented 2 years ago

This is already something you can do using Reveal options: https://revealjs.com/config/

Those options can be passed using reveal_options argument in the format function

output: 
  revealjs::revealjs_presentation:
    reveal_options: 
      controls: false

I don't think we supported (yet) all documented options (like controlsLayout or controlsBackArrows in the link page) because this package does not shipped with the latest reveal.js lib but most of them should work.

Please reopen this issue if this is not working for you.