-
I would like to produce lecture slides in beamer pdf, while also creating a basic pdf file with extra information in :::notes::: containers. Both pdf and beamer produce files with the same name, so the slides get overwritten. Is there something like:
I will be doing this for 20+ lectures each for two courses, so anything that reduces manual metadata entry is a plus (I am doing this within a quarto project). |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 15 replies
-
The YAML option
|
Beta Was this translation helpful? Give feedback.
-
No, I did not get autocomplete for those options, so it makes sense
(autocomplete sometimes doesn't work for me, especially with multiple
editor windows open, so I didn't think twice about that).
So post-render probably wouldn't work for this use case, then?
Yes, I think some of the workings of latex-output-dir are at fault for some
of my errors, especially the ones regarding the location of the text file!
Thanks for all your time and help! For now I don't seem to have any way to
change file name or path based on render format, so for now I'll just do
them manually with the cli.
…On Fri, Apr 21, 2023, 4:55 PM Christophe Dervieux ***@***.***> wrote:
@DBecker7 <https://github.com/DBecker7> Regarding post-render this is a
project option (https://quarto.org/docs/reference/projects/options.html)
part of the project scripts feature (
https://quarto.org/docs/projects/scripts.html)
If you put them under format, this will not work. I am suprised that YAML
validation does not help know better on this 🤔
you should not get autocompletion for this option though when in VSCODE or
RStudio IDE.
Regarding the rest, thanks a lot for your reprex repo. We'll look into
that ! I do think some of this is part of an existing issue we'll look at
for 1.4 #2596 <#2596>
Maybe you can confirm or add to that ?
—
Reply to this email directly, view it on GitHub
<#5261 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACYCHM4RFI5SZSSZWP47CTLXCLX3PANCNFSM6AAAAAAXGWDYEU>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
I think you could use project profiles: one for slides, one for notes. Either specifying the output-dir differently for each, or a separate post-render script for each. |
Beta Was this translation helpful? Give feedback.
I think you could use project profiles: one for slides, one for notes. Either specifying the output-dir differently for each, or a separate post-render script for each.
I've forked your example and it seems to work