Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions docs/authoring/front-matter.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -526,16 +526,17 @@ funding:
---
```

The `funding` key can also take the sub-keys `source`, `recipient` and `investigator`. Both `recipient` and `investigator` can take a string, or a reference to an author or affiliation using `ref:`. For example, this front matter adds funding where the investigator is specified using an author id:
The `funding` key can also take the sub-keys `awards`, `statement`, and `open-access`. The `awards` key takes an array of award objects, each of which can have sub-keys `source`, `recipient`, and `investigator`. Both `recipient` and `investigator` can take a string, or a reference to an author or affiliation using `ref:`. For example, this front matter adds funding where the investigator is specified using an author id:

``` yaml
---
author:
- name: Norah Jones
id: nj
funding:
- source: "NIH (Grant #: 1-R01-MH99999-01A1)"
investigator:
- ref: nj
awards:
- source: "NIH (Grant #: 1-R01-MH99999-01A1)"
investigator:
- ref: nj
---
```