TheDocumentation Index
Fetch the complete documentation index at: https://docs.brainworkup.org/llms.txt
Use this file to discover all available pages before exploring further.
_quarto.yml file at the root of your project controls how Quarto builds your report. Luria Voice requires this file to be present in the same directory from which you run quarto render. If Quarto cannot find _quarto.yml in the current directory, it will not resolve the neurotyp-adult extension and rendering will fail.
Project type
_quarto.yml
type to default for single-document neuropsychological reports. Use type: book only if you are building a multi-document project such as a training manual — standard evaluation reports do not need book mode.
Format settings
_quarto.yml
| Field | Default | Description |
|---|---|---|
toc | false | Table of contents. Keep false for clinical reports — sections are short and a TOC adds visual clutter. |
keep-typ | false | Retain the intermediate .typ file after rendering. Set to true when debugging Typst layout issues. |
The format key
neurotyp-adult-typst tells Quarto to use the neurotyp-adult
extension’s Typst output format. This key must match exactly. The extension
must be installed in your project (run quarto add brainworkup/neurotyp-adult
from your project root if it is missing).Using multiple formats
You can define additional formats in the same_quarto.yml if you need to output both PDF and HTML for the same source document:
_quarto.yml
quarto render template.qmd to produce both outputs at once, or target a specific format with --to:
Knitr chunk options
_quarto.yml
| Option | Value | Effect |
|---|---|---|
echo | false | Hides R source code from output |
warning | false | Suppresses R warnings |
message | false | Suppresses package messages (e.g., tidyverse loading messages) |
Render on save
_quarto.yml
render-on-save is true, supported editors (VS Code with the Quarto extension, RStudio) automatically re-render the document each time you save. This gives you a live preview loop without manually running quarto render.
Full example
_quarto.yml
Extension resolution
Quarto resolves theneurotyp-adult extension by looking for an _extensions/neurotyp-adult/ directory relative to your project root (the folder containing _quarto.yml). Always run quarto render, quarto add, and quarto update from that same root directory. Running these commands from a subdirectory or a different path will cause extension-not-found errors.