Will be great for Quarto to support more customization for cross reference.
project:
type: book
book:
title: "MWE"
author: "Raniere Silva"
chapters:
- index.qmd
appendices:
- data.qmd
crossref:
appendix-title: "Supporting Information"
format:
docx:
toc: false
number-sections: false
# Material and Methods
Some text, see @tbl-iris in @sec-data for details.
# Data Processing {#sec-data}
```{r}
#| label: tbl-iris
#| tbl-cap: Iris
iris |>
head() |>
knitr::kable()
```
Discussed in #2345
Originally posted by rgaiacs September 7, 2022
It's common for academic articles to have "supplementary material"/"supporting information" that publishers process as a different document. The main article will reference the supplementary material, for example
Will be great for Quarto to support more customization for cross reference.
Minimal Working Example
Download all files
_quarto.yml:index.qmd:data.qmd:Observed Output
Expected Output
Sas prefix.