What is the process to get YMAL author contribution information to actually show up in the rendered document? #9456
Answered
by
mcanouil
alexfradera
asked this question in
Q&A
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
--- |
Answered by
mcanouil
Apr 23, 2024
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. |
5 replies
Answer selected by
mcanouil
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.