Pandoc allows a user to translate multiple Markdown input files into one PDF file.
pandoc --pdf-engine=xelatex -o test.pdf *.md
With this call, all Markdown pages are continuously listed in the PDF output without any new-page. I would like to start a new PDF page per Markdown file.
How to add a \newpage
after or before every inserted Markdown file?