Currently, I have a bookdown project structure similar to the one that is recommended: 12.2 Project structure | R Markdown: The Definitive Guide
However, these files are becoming long. I am using subchapters, and subsubchapters, etc.
Is there a way to break up these .Rmd files, and make subchapters into chapters, and subsubchapters into subchapters? And then group the chapters into "parts?"Perhaps there's some lesser-known option I can specify for _bookdown.yml
.
cderv
September 1, 2021, 3:32pm
2
Did you look into the gitbook()
format documentation ?
A guide to authoring books with R Markdown, including how to generate figures and tables, and insert cross-references, citations, HTML widgets, and Shiny apps in R Markdown. The book can be exported to HTML, PDF, and e-books (e.g. EPUB). The...
There is a split_by
option you could maybe use.
Otherwise, bs4_book()
is organized by one chapter per file.
I think this is the only configuration available for now. You would need to rething the structure of your book.
PART header can be a way to organize your content: 2.2 Markdown extensions by bookdown | bookdown: Authoring Books and Technical Documents with R Markdown
Hope it helps
1 Like
thank you! this is very helpful.
1 Like
system
Closed
September 9, 2021, 5:27pm
4
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed. If you have a query related to it or one of the replies, start a new topic and refer back with a link.