1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#import "../lib/unify.typ": qty
#figure(
table(
columns: 2,
table.header([Parameter], [Value]),
[Origin X], [$qty(9.525, "mm")$ from left edge (first column center)],
[Origin Y], [$qty(22.225, "mm")$ from top edge (first row center)],
[Column pitch], [$qty(19.95, "mm")$ ($qty(0.75, "inch")$)],
[Row pitch], [$qty(19.95, "mm")$ ($qty(0.75, "inch")$)],
[Columns], [$2$],
[Rows], [$8$],
),
caption: [Panels grid orign],
) <table-panels-grid-origin>
|