Marco Repetto
Marco Repetto

Reputation: 336

How to make appendix on revealjs rmarkdown

I would like to include an appendix after the references on my Rmd file. With HTML output this would imply the following specification:

pandoc_args: ["--include-after-body=appendix.md"]

However, if I do it with the revealjs engine this does not work

output: 
  revealjs::revealjs_presentation:
    pandoc_args: ["--include-after-body=appendix.md"]

Is there a way to achieve this?

Upvotes: 0

Views: 107

Answers (1)

Marco Repetto
Marco Repetto

Reputation: 336

Simply put

# References

<div id="refs"></div>

# Appendix

Upvotes: 2

Related Questions