-
DescriptionHi all, I cannot find how I can use custom YAML metadata with partials. Below is a very minimal example. It does output the affiliation name (with is a standard Quarto YAML field) but not the fullname (which is not a standard name). This is my index.qmd ---
title: "Min Example"
affiliations:
- id: hms
name: YAML Name
fullname: YAML Fullname
format:
pdf:
template-partials:
- "before-body.tex"
editor: source
--- And then this my before-body.tex:
Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Answered by
mcanouil
Dec 10, 2024
Replies: 1 comment 6 replies
-
Authors and affiliations follow a specific schema, you cannot add whatever you want in it. |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You cannot modify the current schema.
Your only way (as far as I know) is to use another YAML key and as I said implement all the logics in your partials (possibly with the help of a LUA filter).