Wiki source code of Scribus
Last modified by Sebastian Marsching on 2022/05/29 12:04
Show last authors
| author | version | line-number | content |
|---|---|---|---|
| 1 | {{toc/}} | ||
| 2 | |||
| 3 | # PDF Export | ||
| 4 | |||
| 5 | I had the problem that the PDF generated by Scribus 1.4.0 was corrupted and could not be displayed by many PDF viewers. It also caused trouble when being printed. I could solve this problem by exporting a Post Script (PS) file instead and converting to PDF: | ||
| 6 | |||
| 7 | ```bash | ||
| 8 | ps2pdf -sPAPERSIZE=a0 myfile.ps | ||
| 9 | ``` | ||
| 10 | |||
| 11 | The `PAPERSIZE` option was important, because otherwise the resulting PDF would only show a portion of the original PS file, which was in DIN A0 format. |