1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// SAME Analog Modular Ecosystem
//
#import "../lib/unify.typ": qty
#figure(
table(
columns: 3,
table.header([Parameter], [Value], [Tolerance]),
[Height], [$qty(177.8, "mm")$ ($qty(4, "U"), qty(7, "inch")$)], [$plus.minus qty(0.1, "mm")$],
[Width], [$qty(38, "mm")$], [$plus 0.0 "/" qty(-0.1, "mm")$],
[Thickness], [$qty(1.2, "mm")$], [$plus.minus qty(0.1, "mm")$],
[Material], [DC01 cold-rolled steel], [N/A],
[Finish], [Matte black powder coat (RAL 9005)], [N/A],
),
caption: [Panels geometry],
) <table-panels-geometry>
|