You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: template/paper.typ
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -103,12 +103,12 @@ Floating figures can be added and their placement can be controlled easily like
103
103
104
104
#figure(
105
105
image("writer.svg"),
106
-
placement: bottom, // top, bottom or auto
106
+
placement: bottom, //`top`, `bottom` or `auto` for floating placement or `none` for inline placement
107
107
caption: [Scientific writing (AI artwork).],
108
108
) <fig:writer>
109
109
110
110
For JACoW style tables, the `jacow-table` function is provided.
111
-
It takes the column alignment as first argument (here `lcrl` means left, center, right, left), followed by the table contents. With `placement: none`, @table:xydata is forced to appear exactly "here".
111
+
It takes the column alignment as first argument (here `lcrl` means left, center, right, left), followed by the table contents.
112
112
The optional `header` argument allows to adjust the appearance of the JACoW table style as shown in @table:specs.
113
113
114
114
#figure(
@@ -118,7 +118,7 @@ The optional `header` argument allows to adjust the appearance of the JACoW tabl
118
118
[2], [2.5], qty(3, "dm"), [Medium],
119
119
[3], [18], qty(1.5, "m"), [*Large*],
120
120
),
121
-
placement: none, // top, bottom, autoor none
121
+
//placement: none, // `top`, `bottom` or `auto` for floating placement or `none` for inline placement
122
122
caption: [Dimensions],
123
123
) <table:xydata>
124
124
@@ -131,7 +131,7 @@ The optional `header` argument allows to adjust the appearance of the JACoW tabl
131
131
[Cells], [3], [5], [9],
132
132
[Quality], [100], [500], num(1000),
133
133
),
134
-
placement: none, // top, bottom, autoor none
134
+
//placement: none, // `top`, `bottom` or `auto` for floating placement or `none` for inline placement
135
135
caption: [
136
136
Imaginary specifications of a device for the three generations A, B and C
137
137
]
@@ -145,7 +145,7 @@ These support top, bottom or automatic placement as well.
145
145
#figure(
146
146
box(fill: silver, width: 100%, height: 2cm),
147
147
scope: "parent", // two column-figure
148
-
placement: top, // top, bottom or auto
148
+
placement: top, //`top`, `bottom` or `auto` for floating placement or `none` for inline placement
149
149
caption: [A column spanning figure. #lorem(21)],
150
150
) <fig:rect>
151
151
@@ -202,7 +202,7 @@ With the *lilaq* package, plots can be create directly in the document, so you c
202
202
xlabel: [Angle ~ $x$ / rad], xlim: (0, 10),
203
203
ylabel: [$y$ / m], ylim: (-1.5, 2.5),
204
204
),
205
-
placement: auto,
205
+
placement: auto,// `top`, `bottom` or `auto` for floating placement or `none` for inline placement
206
206
caption: [A plot create with the Lilaq package directly inside the typst source code]
0 commit comments