Hi, I’m trying to write a document with a list of bullet points, and insert a table in between for an experimental protocol.
+ Step 1
#figure(
table(
columns: (auto, auto),
align: (left, right),
stroke: 0.5pt,
table.header([Reagent], [1X Volume (µL)]),
[A], [12.5],
[B], [2.5],
),
caption: [Table1],
) <tbl>
+ Step2
I indented the table into numbered list, so the numbering continues. Without this indentation, the number always starts from 1 after the table.
But I also want to put table in the middle of the page, and I have not found a good way to do it. using align[center] only put it to the center of bullet list text width, not page width.
Thanks so much in advance!!