Path: blob/main/src/resources/schema/document-crossref.yml
12925 views
- name: crossref1description:2short: Configuration for cross-reference labels and prefixes.3long: Configuration for cross-reference labels and prefixes. See [Cross-Reference Options](https://quarto.org/docs/reference/metadata/crossref.html) for more details.4schema:5anyOf:6- enum: [false]7- object:8closed: true9properties:10custom:11arrayOf:12object:13description: A custom cross reference type. See [Custom](https://quarto.org/docs/reference/metadata/crossref.html#custom) for more details.14closed: true15required: ["kind", "reference-prefix", "key"]16properties:17kind:18enum: [float]19description: The kind of cross reference (currently only "float" is supported).20reference-prefix:21string:22description: The prefix used in rendered references when referencing this type.23caption-prefix:24string:25description: The prefix used in rendered captions when referencing this type. If omitted, the field `reference-prefix` is used.26space-before-numbering:27default: true28boolean:29description: If false, use no space between crossref prefixes and numbering.30key:31string:32description: The key used to prefix reference labels of this type, such as "fig", "tbl", "lst", etc.33latex-env:34string:35description: In LaTeX output, the name of the custom environment to be used.36latex-list-of-file-extension:37string:38description: In LaTeX output, the extension of the auxiliary file used by LaTeX to collect names to be used in the custom "list of" command. If omitted, a string with prefix `lo` and suffix with the value of `ref-type` is used.39latex-list-of-description:40string:41description: The description of the crossreferenceable object to be used in the title of the "list of" command. If omitted, the field `reference-prefix` is used.42caption-location:43enum: [top, bottom, margin]44default: bottom45description: The location of the caption relative to the crossreferenceable content.4647chapters:48boolean:49description: Use top level sections (H1) in this document as chapters.50default: false51title-delim:52string:53description: The delimiter used between the prefix and the caption.54fig-title:55string:56description: The title prefix used for figure captions.57tbl-title:58string:59description: The title prefix used for table captions.60eq-title:61string:62description: The title prefix used for equation captions.63lst-title:64string:65description: The title prefix used for listing captions.66thm-title:67string:68description: The title prefix used for theorem captions.69lem-title:70string:71description: The title prefix used for lemma captions.72cor-title:73string:74description: The title prefix used for corollary captions.75prp-title:76string:77description: The title prefix used for proposition captions.78cnj-title:79string:80description: The title prefix used for conjecture captions.81def-title:82string:83description: The title prefix used for definition captions.84exm-title:85string:86description: The title prefix used for example captions.87exr-title:88string:89description: The title prefix used for exercise captions.90fig-prefix:91string:92description: The prefix used for an inline reference to a figure.93tbl-prefix:94string:95description: The prefix used for an inline reference to a table.96eq-prefix:97string:98description: The prefix used for an inline reference to an equation.99sec-prefix:100string:101description: The prefix used for an inline reference to a section.102lst-prefix:103string:104description: The prefix used for an inline reference to a listing.105thm-prefix:106string:107description: The prefix used for an inline reference to a theorem.108lem-prefix:109string:110description: The prefix used for an inline reference to a lemma.111cor-prefix:112string:113description: The prefix used for an inline reference to a corollary.114prp-prefix:115string:116description: The prefix used for an inline reference to a proposition.117cnj-prefix:118string:119description: The prefix used for an inline reference to a conjecture.120def-prefix:121string:122description: The prefix used for an inline reference to a definition.123exm-prefix:124string:125description: The prefix used for an inline reference to an example.126exr-prefix:127string:128description: The prefix used for an inline reference to an exercise.129130fig-labels:131ref: crossref-labels-schema132description: The numbering scheme used for figures.133134tbl-labels:135ref: crossref-labels-schema136description: The numbering scheme used for tables.137138eq-labels:139ref: crossref-labels-schema140description: The numbering scheme used for equations.141142sec-labels:143ref: crossref-labels-schema144description: The numbering scheme used for sections.145146lst-labels:147ref: crossref-labels-schema148description: The numbering scheme used for listings.149150thm-labels:151ref: crossref-labels-schema152description: The numbering scheme used for theorems.153154lem-labels:155ref: crossref-labels-schema156description: The numbering scheme used for lemmas.157158cor-labels:159ref: crossref-labels-schema160description: The numbering scheme used for corollaries.161162prp-labels:163ref: crossref-labels-schema164description: The numbering scheme used for propositions.165166cnj-labels:167ref: crossref-labels-schema168description: The numbering scheme used for conjectures.169170def-labels:171ref: crossref-labels-schema172description: The numbering scheme used for definitions.173174exm-labels:175ref: crossref-labels-schema176description: The numbering scheme used for examples.177178exr-labels:179ref: crossref-labels-schema180description: The numbering scheme used for exercises.181182lof-title:183string:184description: The title used for the list of figures.185186lot-title:187string:188description: The title used for the list of tables.189190lol-title:191string:192description: The title used for the list of listings.193194labels:195ref: crossref-labels-schema196description: The number scheme used for references.197198subref-labels:199ref: crossref-labels-schema200description: The number scheme used for sub references.201202ref-hyperlink:203boolean:204default: true205description: Whether cross references should be hyper-linked.206207appendix-title:208string:209description: The title used for appendix.210211appendix-delim:212string:213description: The delimiter beween appendix number and title.214215- name: crossrefs-hover216schema: boolean217tags:218formats: [$html-files]219default: true220description: Enables a hover popup for cross references that shows the item being referenced.221222223