Export one slide per one PDF page

You can try adding this as a CSS snippet:

@media print {
  hr {
    page-break-after: always;
  }
}

and then print in Landscape mode.

The print will come as per the preview mode, not as the slides’ styles and sizes. Here is one slide - page comparison:

7 Likes