Are using auto subdirectories/wildcards and compiling to a single pdf mutually exclusive? #6636
Unanswered
thadryanjs
asked this question in
Q&A
Replies: 2 comments 2 replies
-
Could you share a small self-contained "working" (reproducible) example to work with, i.e., a complete Quarto document or a Git repository? Thanks. You can share a Quarto document using the following syntax, i.e., using more backticks than you have in your document (usually four ````qmd
---
title: "Reproducible Quarto Document"
format: html
---
This is a reproducible Quarto document using `format: html`.
It is written in Markdown and contains embedded R code.
When you run the code, it will produce a plot.
```{r}
plot(cars)
```
The end.
```` |
Beta Was this translation helpful? Give feedback.
1 reply
-
@thadryanjs I believe It is still to be implemented |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Description
Hello!
I made a template for some manuscripts I'll be working on which will have a varying number of sections and subsections, which I planned to compile to a single pdf.
I've structured them like this:
I was initially planning on using the
book
template. Because there will likely be a lot of them being added and removed, I was planning on using wildcards, ie:...but found out that wasn't possible.
I tried the workaround mentioned in the post, using the
website
template, but at the time of this writing, this template can't produce a single pdf . The OP is asking about abook
and this is presented as a workaround but I can't get to work withbook
s, onlywebsite
s proper.It seems you can either 1) use auto with a
website
, or 2) get a single pdf from abook
, but not both (or 3, I am completely missing something). Thedefault
project uses wildcards but, unless I'm mistaken, also will produce a pdf for every source file.Is there a way to use sub-directories to make a single pdf in an automated way or should I try a new approach/script something?
Cheers!
PS:
Thanks for working on this project - I've found the tool quite handy.
Beta Was this translation helpful? Give feedback.
All reactions