Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/resources/schema/cell-pagelayout.yml
12921 views
1
- name: column
2
schema:
3
ref: page-column
4
description:
5
short: "Page column for output"
6
long: "[Page column](https://quarto.org/docs/authoring/article-layout.html) for output"
7
8
- name: fig-column
9
schema:
10
ref: page-column
11
description:
12
short: "Page column for figure output"
13
long: "[Page column](https://quarto.org/docs/authoring/article-layout.html) for figure output"
14
15
- name: tbl-column
16
schema:
17
ref: page-column
18
description:
19
short: "Page column for table output"
20
long: "[Page column](https://quarto.org/docs/authoring/article-layout.html) for table output"
21
22
- name: cap-location
23
tags:
24
contexts: [document-layout]
25
formats: [$html-files, $pdf-all, typst]
26
schema:
27
enum: [top, bottom, margin]
28
default: bottom
29
description: "Where to place figure and table captions (`top`, `bottom`, or `margin`)"
30
31
- name: fig-cap-location
32
tags:
33
contexts: [document-layout, document-figures]
34
formats: [$html-files, $pdf-all, typst]
35
schema:
36
enum: [top, bottom, margin]
37
default: bottom
38
description: "Where to place figure captions (`top`, `bottom`, or `margin`)"
39
40
- name: tbl-cap-location
41
tags:
42
contexts: [document-layout, document-tables]
43
formats: [$html-files, $pdf-all, typst]
44
schema:
45
enum: [top, bottom, margin]
46
default: top
47
description: "Where to place table captions (`top`, `bottom`, or `margin`)"
48
49