I would like to add a blank page after certain page in pdf Quarto
. I tried using \newpage
like described here with this reproducible example:
---
title: "Add blank page after certain page"
format: pdf
---
# Chapter 1
Here some random text
\newpage
\newpage
# Chapter 2
Again random rext after white page
Output:
As you can see in the output, there is no blank page after the first page. I also tried \pagebreak
like here, but that also doesn't work. So I was wondering if anyone knows how to add a blank page between two chapters in pdf Quarto?