I am converting a document from Pandoc markdown to .pdf. I run the conversion like this, and everything works fine:
pandoc test.MD -f markdown -o test.pdf
However, I would like pandoc to output my PDF pages in landscape, rather than portrait, format. Is there a way to do this?
In the documentation, I could not find the right command (checking under Variables for LaTex). Adding the command \setuppapersize[letter,landscape], which is mentioned there, seems to work only if you use the Context engine which I have no experience with / not installed. I also wanted to note that I am using the \newpage command to break the file up into pages, just in case that makes a difference.
I'd be grateful for any pointers!