-
Notifications
You must be signed in to change notification settings - Fork 4
/
chart-chords.typ
26 lines (23 loc) · 901 Bytes
/
chart-chords.typ
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#import "../lib.typ": chart-chord
#set document(date: none)
#set page(width: auto, height: auto, margin: 0pt)
#let chart-chord-sharp = chart-chord.with(size: 18pt)
#let chart-chord-round = chart-chord.with(design: "round", size: 1.5em)
#rect(
stroke: none,
radius: 3pt,
inset: (x: 10pt, y: 10pt),
fill: white, [
#chart-chord-sharp(tabs: "x32o1o", fingers: "n32n1n")[C]
#h(2em)
#chart-chord-sharp(tabs: "ooo3", fingers: "ooo3")[C]
#h(4em)
#chart-chord-round(tabs: "xn332n", fingers: "o13421", fret: 3, capos: "115", position: "bottom")[Cm]
#h(2em)
#chart-chord-round(tabs: "onnn", fingers: "n111", capos: "313", position: "bottom")[Cm]
#h(4em)
#chart-chord-round(tabs: "xn332n", fingers: "o13421", fret: 3, capos: "115", background: silver)[Cm]
#h(2em)
#chart-chord-round(tabs: "onnn", fingers: "n111", capos: "313", background: silver)[Cm]
]
)