I am creating a report in quarto that is rendered to docx. I have created an APA-compliant reference document and stored it in the project folder following these official instructions. When I render the document to docx, the default style is applied to all parts of my document. However, for my Table section I want to apply another style from my custom-reference-doc.docx. Is this possible with Quarto?
---
title: "Report"
format:
docx:
reference-doc: custom-reference-doc.docx
editor: visual
execute:
echo: false
toc: true
toc-depth: 2
---
Apply the standard style to this piece of text.
Apply the style "No spacing" to everything down below:
Tables
```{r}
head(cars)