I'm trying to include the first and last page of a PDF document in a new PDF document that I create via org-mode's Latex export engine. With this I have two issues:
- I would like to include the first and last page of the external PDF document scaled to their real size and not scaled down to fit the margins of the new PDF. However, I have not found much information about the
:scale
parameter in org-mode's manual. If I run:
#+ATTR_LATEX: :scale 1.0
or
#+ATTR_LATEX: :scale 100.0
the external PDF is not included at all.
- I would like to be able to choose which page of the external PDF to include. The default behavior when including a link to an external PDF as in:
[[/my/directory/my-external-document.pdf]]
is to include only the first page of the PDF linked. How could I include another page, such as the last one?
Thank you all!