What is the process to get YMAL author contribution information to actually show up in the rendered document? #9456
-
DescriptionAs per the documentation, it is relatively simple to introduce information about author roles/contribution as below. But how to get this generated into my rendered output? I can't seem to find anything in the documentation that acknowledges this; I have previously done this in rmarkdown using papaja so seeking to find some way to produce the output. Thanks very much for any support. ---
title: "Reproducible Quarto Document"
format: docx
author:
- name: Josiah Carberry
roles:
- investigation: lead
- data curation: supporting
--- |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 5 replies
-
You need to define a custom Word document template (I am not sure it's really possible that way) or use a Lua filter such as https://github.com/kapsner/authors-block Note that the documentation you shared is only the full schema. It does not mean that default formats/templates are using every pieces of it. |
Beta Was this translation helpful? Give feedback.
You need to define a custom Word document template (I am not sure it's really possible that way) or use a Lua filter such as https://github.com/kapsner/authors-block
Note that the documentation you shared is only the full schema. It does not mean that default formats/templates are using every pieces of it.