How to customize PDF generated by a Webform submission?

Hello Lina and welcome to the community forum!

I will start by explained briefly what happens when a submission is transformed as PDF.

Basically submissions in Drupal 8 webform are entities, as entities they offer methods to get rendered (controlled by webform configuration and/or theming) and styled (via theming) When generating a PDF version of a submissions Drupal is rendering the submission entity and then transforming the HTML result to PDF using some libraries.

So in order to to change the generation of the resulted PDF document one need to act on the previous elements.

Ideally those changes should be done via theming templating system, where entity print module already provides a way to change the rendering/styling of the printed entities, more details https://www.drupal.org/node/2706755

Some workarounds:

Cheers