Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/resources/schema/document-attributes.yml
12921 views
1
- name: title
2
schema: string
3
description: "Document title"
4
5
- name: subtitle
6
schema: string
7
tags:
8
formats: [$pdf-all, $html-all, context, muse, odt, docx]
9
description: "Identifies the subtitle of the document."
10
11
- name: date
12
schema:
13
ref: date
14
description: "Document date"
15
16
- name: date-format
17
schema:
18
ref: date-format
19
description: "Date format for the document"
20
21
- name: date-modified
22
tags:
23
formats: [$html-doc]
24
schema:
25
ref: date
26
description: "Document date modified"
27
28
- name: author
29
schema:
30
maybeArrayOf:
31
anyOf:
32
- object
33
- string
34
description: "Author or authors of the document"
35
36
- name: affiliation
37
schema:
38
maybeArrayOf:
39
anyOf:
40
- object
41
- string
42
tags:
43
formats: [$jats-all]
44
description:
45
short: The list of organizations with which contributors are affiliated.
46
long: |
47
The list of organizations with which contributors are
48
affiliated. Each institution is added as an [`<aff>`] element to
49
the author's contrib-group. See the Pandoc [JATS documentation](https://pandoc.org/jats.html)
50
for details on `affiliation` fields.
51
52
- name: copyright
53
schema: object
54
tags:
55
formats: [$jats-all]
56
description:
57
short: "Licensing and copyright information."
58
long: |
59
Licensing and copyright information. This information is
60
rendered via the [`<permissions>`](https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/permissions.html) element.
61
The variables `type`, `link`, and `text` should always be used
62
together. See the Pandoc [JATS documentation](https://pandoc.org/jats.html)
63
for details on `copyright` fields.
64
65
- name: article
66
schema: object
67
tags:
68
formats: [$jats-all]
69
description:
70
short: "Information concerning the article that identifies or describes it."
71
long: |
72
Information concerning the article that identifies or describes
73
it. The key-value pairs within this map are typically used
74
within the [`<article-meta>`](https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/article-meta.html) element.
75
See the Pandoc [JATS documentation](https://pandoc.org/jats.html) for details on `article` fields.
76
77
- name: journal
78
schema: object
79
tags:
80
formats: [$jats-all]
81
description:
82
short: Information on the journal in which the article is published.
83
long: |
84
Information on the journal in which the article is published.
85
See the Pandoc [JATS documentation](https://pandoc.org/jats.html) for details on `journal` fields.
86
87
- name: institute
88
schema:
89
maybeArrayOf:
90
anyOf:
91
- object # This is a temporary fix for https://github.com/quarto-dev/quarto-cli/issues/552
92
- string
93
tags:
94
formats: [$html-pres, beamer]
95
description: Author affiliations for the presentation.
96
97
- name: abstract
98
schema: string
99
tags:
100
formats:
101
[
102
$pdf-all,
103
$html-doc,
104
$epub-all,
105
$asciidoc-all,
106
$jats-all,
107
context,
108
ms,
109
odt,
110
docx,
111
]
112
description: "Summary of document"
113
114
- name: abstract-title
115
schema: string
116
tags:
117
formats: [$html-doc, $epub-all, docx, typst]
118
description: "Title used to label document abstract"
119
120
- name: notes
121
schema: string
122
tags:
123
formats: [$jats-all]
124
description: |
125
Additional notes concerning the whole article. Added to the
126
article's frontmatter via the [`<notes>`](https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/notes.html) element.
127
128
- name: tags
129
schema:
130
arrayOf: string
131
tags:
132
formats: [$jats-all]
133
description: List of keywords. Items are used as contents of the
134
[`<kwd>`](https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/kwd.html) element; the elements are grouped in a
135
[`<kwd-group>`](https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/kwd-group.html) with the
136
[`kwd-group-type`](https://jats.nlm.nih.gov/publishing/tag-library/1.2/attribute/kwd-group-type.html) value `author`.
137
138
- name: doi
139
schema: string
140
tags:
141
formats: [$html-doc]
142
description: Displays the document Digital Object Identifier in the header.
143
144
- name: thanks
145
schema: string
146
tags:
147
formats: [$pdf-all, typst]
148
description: The contents of an acknowledgments footnote after the document title.
149
150
- name: order
151
schema: number
152
description: Order for document when included in a website automatic sidebar menu.
153
154