Every Luria Voice report begins with a YAML front matter block at the top ofDocumentation 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. These fields populate the report’s cover page, the running CONFIDENTIAL header on interior pages, and anywhere else the template references patient or case identifiers. Getting this block right before you render ensures all identifying information is consistent throughout the document.
Full front matter example
Field reference
title
The report title printed at the top of the cover page. Most clinicians use one of the following standard values:
patient
The patient’s last name only. This value appears in the CONFIDENTIAL header that runs across the top of every page after the cover page.
The
patient field is intentionally limited to the last name so the header
remains compact. The full name is handled separately by the name field.name
The patient’s full name in Last, First format. This appears on the cover page and in the patient demographics section.
dob
Date of birth in ISO 8601 format (YYYY-MM-DD). Always quote this value to prevent YAML from interpreting it as a date object.
age
Patient age in whole years at the time of the evaluation. Enter this as a plain integer — no quotes required.
doe, doe2, doe3 — Evaluation dates
Luria Voice supports evaluations conducted across one, two, or three sessions. Use doe for the first session and add doe2 and doe3 only if additional sessions occurred.
- Single session
- Two sessions
- Three sessions
yaml doe: "2025-04-07" doe3, that date will not appear in the report.
date_of_report
Controls the date shown on the report’s cover page. Set it to last-modified to have Quarto automatically use the file’s last modification timestamp, or enter a fixed ISO 8601 date string.
- Auto-update on render
- Fixed date
yaml date_of_report: last-modified last-modified is recommended for most workflows because the date automatically reflects when you last rendered the report, reducing the chance of a stale date slipping through.
case_number
Your clinic or practice’s internal case identifier. Always quote this value to preserve leading zeros and hyphens.
CONFIDENTIAL header behavior
The Typst template automatically places a CONFIDENTIAL header at the top of every page after the cover page. The header reads:patient field in your front matter supplies the last name in this header. If patient is missing or empty, the header will render without a name, which can cause compliance issues in clinical settings.
Complete minimal example
If you are running a single-session evaluation and want the simplest valid front matter block:doe2, doe3) is optional and can be added when needed.