gongcastro / upfthesis

A Quarto template for thesis dissertations at Universitat Pompeu Fabra
https://gongcastro.github.io/blog/upfthesis/upfthesis.html
MIT License
7 stars 1 forks source link

Add horizontal pages in template #8

Closed gongcastro closed 11 months ago

gongcastro commented 11 months ago

Pages can be displayed in landscape mode (horizontally) using the lscape LaTeX package.

First we need to define the commands before the header:

 \usepackage{lscape}
 \newcommand{\blandscape}{\begin{landscape}}
 \newcommand{\elandscape}{\end{landscape}}

Then we can just add \blandscape and \elandscape between the lines we want to include in landscape mode.