Troubleshooting FAQ¶
Logo Not Showing¶
Paths in module files are relative to the module file itself, not the project root. Use image("../assets/logos/company.png").
Font Missing¶
Install Roboto and Source Sans 3 (or Source Sans Pro) locally. For non-Latin profiles, install the font(s) listed in [layout.fonts] regular_fonts and [layout.fonts] header_font for that profile (e.g. "Heiti SC" for Chinese on macOS, or "Noto Sans CJK SC" as a freely-redistributable alternative).
h-bar() Not Working¶
Make sure you import h-bar from the package:
The old name hBar has been removed in v3. See the Migration Guide for all renamed functions.
Wrong metadata.toml Key Silently Ignored¶
Typst TOML parsing doesn't warn on unknown keys. Double-check key names against the Configuration Reference. Common mistakes: headerAlign (wrong) vs header_align (correct).
New Module Not Appearing¶
After creating a new module file, you must add its name to the import-modules((...)) call in cv.typ.
Profile Photo Not Showing¶
Check two things:
display_profile_photomust betruein[layout.header]of yourmetadata.toml- The photo is passed as an argument in
cv.typ, not set inmetadata.toml:
The image path is relative to the cv.typ file. If your photo is in a different directory, adjust the path accordingly.
Non-Latin Characters Showing as Boxes¶
If Chinese, Japanese, Korean, Russian, Arabic, etc. characters render as empty boxes or tofu:
- Install the appropriate font on your system (e.g. "Heiti SC" for Chinese on macOS; "Noto Sans CJK SC" on Linux is a freely-redistributable alternative).
-
List both Latin and non-Latin fonts in
[layout.fonts] regular_fonts— typst's codepoint-level fallback picks per character, so a single font chain handles mixed scripts: -
Optionally override the header name with
[personal] display_nameto replace the Latin "first (light) + last (bold)" split with a single styled string:
See the Configuration Reference for the complete [layout.fonts] and [personal] field list.
Typst Version Compatibility¶
brilliant-CV requires Typst 0.14.0 or newer (set in typst.toml as compiler = "0.14.0"). If you encounter unexpected errors, check your Typst version:
Update to the latest Typst release if you're on an older version.