awards.typ
1 // Awards and Honors section 2 3 #import "../styles.typ": * 4 5 #let awards(entries) = { 6 block(breakable: false)[ 7 #section-heading("Awards and Honors") 8 9 #table( 10 columns: (1fr, auto), 11 stroke: none, 12 inset: (x: 0pt, y: 4pt), 13 align: (left, right), 14 ..entries 15 .map(e => ( 16 [#e.description], 17 [#e.where], 18 )) 19 .flatten() 20 ) 21 ] 22 }