mirror of https://github.com/patacrep/patacrep.git
Louis
9 years ago
9 changed files with 159 additions and 19 deletions
@ -1,16 +1,11 @@ |
|||
\[ |
|||
(*- for chord in content.chords -*) |
|||
(* if not loop.first *) (* endif *) |
|||
((- chord.key -)) |
|||
(* if chord.alteration == '#' *)#(* endif -*) |
|||
(* if chord.alteration == 'b' *)&(* endif -*) |
|||
(* if chord.modifier *)((chord.modifier))(* endif -*) |
|||
(* if chord.add_note *)((chord.add_note))(* endif -*) |
|||
(* if chord.basskey -*) |
|||
/ |
|||
((- chord.basskey -)) |
|||
(* if chord.bassalteration == '#' *)#(* endif -*) |
|||
(* if chord.bassalteration == 'b' *)&(* endif -*) |
|||
(* endif -*) |
|||
(* endfor -*) |
|||
] |
|||
((- content.key -)) |
|||
(* if content.alteration == '#' *)#(* endif -*) |
|||
(* if content.alteration == 'b' *)&(* endif -*) |
|||
(* if content.modifier *)((content.modifier))(* endif -*) |
|||
(* if content.addnote *)((content.addnote))(* endif -*) |
|||
(* if content.basskey -*) |
|||
/ |
|||
((- content.basskey -)) |
|||
(* if content.bassalteration == '#' *)#(* endif -*) |
|||
(* if content.bassalteration == 'b' *)&(* endif -*) |
|||
(* endif -*) |
|||
|
@ -0,0 +1,6 @@ |
|||
\[ |
|||
(*- for chord in content.chords -*) |
|||
(* if not loop.first *) (* endif -*) |
|||
(( render(chord) -)) |
|||
(* endfor -*) |
|||
] |
@ -0,0 +1,24 @@ |
|||
\gtab{ |
|||
((- render(content.key) -)) |
|||
}{ |
|||
(*- if content.basefret -*) |
|||
((content.basefret)): |
|||
(*- endif -*) |
|||
(*- for string in content.frets -*) |
|||
(*- if string is none -*) |
|||
X |
|||
(*- else -*) |
|||
(( string -)) |
|||
(* endif -*) |
|||
(* endfor -*) |
|||
(* if content.fingers -*) |
|||
: |
|||
(*- for finger in content.fingers -*) |
|||
(* if finger is none -*) |
|||
0 |
|||
(*- else -*) |
|||
(( finger -)) |
|||
(* endif -*) |
|||
(* endfor -*) |
|||
(* endif -*) |
|||
} |
@ -0,0 +1,2 @@ |
|||
{define: E4 base-fret 7 frets 0 1 3 3 x x} |
|||
{define: E5 base-fret 7 frets 0 1 3 3 x x fingers - 1 2 3 - -} |
@ -0,0 +1,3 @@ |
|||
======== |
|||
{define: E4 base-fret 7 frets 0 1 3 3 x x} |
|||
{define: E5 base-fret 7 frets 0 1 3 3 x x fingers - 1 2 3 - -} |
Loading…
Reference in new issue