1
2
3
4
5
6
7
8
9
10
11
12
13
|
#import "../lib/unify.typ": num, unit
#figure(
table(
columns: 4,
table.header([Symbol], [Definition], [Value], [Unit]),
[$k_B$], [Boltzmann constant], [$num("1.381e-23")$], [$unit("joule per kelvin")$],
[$T$], [Absolute temperature], [N/A], [$unit(K)$],
[$e$], [Elementary charge], [$num("1.603e-19")$], [$unit(C)$],
),
caption: [Fundamental constants],
) <table-fundamental-constants>
|