Include multipage PDF in PDF rendering with Typst #11992
Unanswered
gabrielparriaux
asked this question in
Q&A
Replies: 1 comment 2 replies
-
Did you try the markdown syntax to include PDF? (if it does not work, it's likely because it's not implemented on Pandoc Typst writer or that there is no Typst command to do that) ---
title: "Quarto Playground"
format: pdf
---
This is a playground for Quarto.
{{< lipsum 1 >}}
![An image]({{< placeholder 600 400 >}}){#fig-placeholder}
![](my-pdf.pdf) Note that you can still use raw LaTeX/Typst for LaTeX/Typst output: https://quarto.org/docs/authoring/markdown-basics.html#raw-content
I don't think Quarto is the best place to ask such specific Typst question by the way. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Description
When we want to include a multipage PDF into a Quarto document for rendering in PDF, it’s possible to use the
\includepdf
command from thepdfpages
package.Is there an equivalent to this command when we do rendering with Typst?
If there is no way to include a multipage PDF when rendering with Typst, is it possible to do some automated post-processing with the same result instead?
In my understanding, the
post-render:
option exists only for projects, but I read somewhere that it could be added some day to single Quarto documents. Is it available right now?Thanks a lot for your advice!
Gabriel
Beta Was this translation helpful? Give feedback.
All reactions