-
| DescriptionI'm using Quarto 1.6.39 with RStudio 2024.12.0 and R 4.4.2. I created an instance of the quarto book template.  I revised  In  In the resulting pdf, Summary is indeed an appendix, and the link from  will change "Appendices" to "Attachments" in the table of contents. Perhaps there is more help like this, but I can no longer locate the source. Thanks in advance! | 
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
| There are different things here: the prefix/title used for cross-reference and the title used for the sections, all these are defined in  For instance, with the following I get "Attachment" everywhere. language:
  crossref-apx-prefix: Attachment
  section-title-appendices: AttachmentWhat troubles me is: crossref:
  appendix-title: "App."
  appendix-delim: ":"from https://quarto.org/docs/books/book-structure.html#parts-appendices. The above code does not seem to have any impact at all on anything. | 
Beta Was this translation helpful? Give feedback.
There are different things here: the prefix/title used for cross-reference and the title used for the sections, all these are defined in
_language.yml(and other languages): https://quarto.org/docs/authoring/language.htmlFor instance, with the following I get "Attachment" everywhere.
What troubles me is:
from https://quarto.org/docs/books/book-structure.html#parts-appendices.
The above code does not seem to have any impact at all on anything.
Does the
crossref:code do something for you?