Luria Voice reports are modular by design. Rather than a single longDocumentation Index
Fetch the complete documentation index at: https://docs.brainworkup.org/llms.txt
Use this file to discover all available pages before exploring further.
template.qmd that contains every possible section, the master template pulls in domain-specific partial files using Quarto’s include shortcode. You control which sections appear in a given report by editing a single file: _domains_to_include.qmd.
How the include pattern works
Quarto’sinclude shortcode inserts the full contents of another .qmd file at the point where the shortcode appears. The syntax is:
_) is a Quarto convention: files prefixed with _ are treated as partials and are not rendered as standalone documents. They are only processed when included by another file.
In a Luria Voice project, template.qmd includes _domains_to_include.qmd at the point in the report where cognitive domain sections should appear:
_domains_to_include.qmd with the domain partials for this specific patient.
The _domains_to_include.qmd file
This is the only file you edit to add or remove sections from a report. Each line includes one domain partial.
Common domain partials
The table below lists the partial files typically available in a Neurotyp project. Create any that are missing for your practice’s standard assessment battery.| File | Domain |
|---|---|
_neurocognitive.qmd | General neurocognitive overview / intelligence |
_attention.qmd | Attention and concentration |
_memory.qmd | Learning and memory |
_executive_function.qmd | Executive function |
_language.qmd | Language and verbal abilities |
_visuospatial.qmd | Visuospatial and perceptual abilities |
_processing_speed.qmd | Processing speed |
_social_cognition.qmd | Social cognition and emotional processing |
_validity.qmd | Performance and symptom validity |
_sirf.qmd | Summary, impressions, and recommendations |
Writing a domain partial
A domain partial is a standard.qmd file that contains the prose, R code chunks, and Markdown for one cognitive domain section. It can include anything that is valid in a Quarto document.
The following example shows a memory domain partial that uses the cingulate R package to generate a score summary visualisation.
Each partial file is inserted verbatim into the report at render time,
including all R code chunks. Variables and objects defined in earlier partials
are available to later ones because all partials share the same Quarto
rendering session.
Including or excluding sections per patient
The power of the partial pattern is that you tailor each report to what was actually assessed. A standard adult evaluation might include six domains; a focused attention evaluation might include only two. For a comprehensive adult evaluation:Nesting partials
You can include partials within partials. For example, a_memory.qmd partial could itself include subtest-level partials:
_domains_to_include.qmd — is enough for most evaluations.