-
DescriptionI have a quarto book with a folder structure where I have one
I want to render the book and a Ideas:
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 5 replies
-
|
Beta Was this translation helpful? Give feedback.
-
That doesn't (seem to) work with the Quarto Book. Am I missing how to do that? |
Beta Was this translation helpful? Give feedback.
-
That's not possible. It's unlikely to be possible in the near-future as well, because the single-file output is a quite different code path, and the intermediate file that's passed to From what I understand, you want to do this to accelerate your rendering ("These files take a while to run"); but because different render calls involve multiple calls to If you want to reuse computations, currently Quarto itself is not exactly well-suited for it. We might change that in the future, but that's unfortunately the present reality. If you're willing to change your workflow, you might consider rendering intermediate results to Jupyter notebooks, and then embedding their contents: https://quarto.org/docs/authoring/notebook-embed.html |
Beta Was this translation helpful? Give feedback.
That's not possible. It's unlikely to be possible in the near-future as well, because the single-file output is a quite different code path, and the intermediate file that's passed to
knitr
in book format will in general be different for books and individual files. Whatknitr
produces is also different depending on the format: consider image formats supported in PDF vs HTML (or the fact that some packages emit interactive widgets in HTML vs static images in PDF books).From what I understand, you want to do this to accelerate your rendering ("These files t…