diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/ref/meta/figure.png | bin | 0 -> 25146 bytes | |||
| -rw-r--r-- | tests/typ/meta/figure.typ | 24 |
2 files changed, 24 insertions, 0 deletions
diff --git a/tests/ref/meta/figure.png b/tests/ref/meta/figure.png Binary files differnew file mode 100644 index 00000000..b39f462f --- /dev/null +++ b/tests/ref/meta/figure.png diff --git a/tests/typ/meta/figure.typ b/tests/typ/meta/figure.typ new file mode 100644 index 00000000..567e0431 --- /dev/null +++ b/tests/typ/meta/figure.typ @@ -0,0 +1,24 @@ +// Test figures. + +--- +#set page(width: 150pt) +#set figure(numbering: "I") + +We can clearly see that @fig-cylinder and +@tab-complex are relevant in this context. + +#figure( + table(columns: 2)[a][b], + caption: [The basic table.], +) <tab-basic> + +#figure( + pad(y: -11pt, image("/cylinder.svg", height: 3cm)), + caption: [The basic shapes.], + numbering: "I", +) <fig-cylinder> + +#figure( + table(columns: 3)[a][b][c][d][e][f], + caption: [The complex table.], +) <tab-complex> |
