Re: [tablatures] Re: Violin Tablature idea |
[ Thread Index |
Date Index
| More lilynet.net/tablatures Archives
]
Am 26.06.2012 01:54, schrieb djbrock:
Sure. Instead of the fret positions
0 1 2 3 4 5 6 I might have
0 0# 1 1# 2 3 3# 4 - these would be based upon positions rather than
frets. It might also be listed like this
0 .5 1 1.5 2 3 3.5 4
Position 1 matches with fret 2. Position 2 matches fret 4. Position 3
matches fret 5. Position 4 matches fret 7. It could also be repeated
up the neck for 2nd and 3rd positions, but I'm mostly concerned with
the lower position for beginners.
Ah, I see. Please try the following code. Is this close to what you need?
music = \relative f {
g1 gis a ais b c cis
}
\score {
<<
\new Staff {
\new Voice { \music }
}
\new TabStaff \with { tablatureFormat =
#fret-letter-tablature-format } {
\set TabStaff.fretLabels = \markuplist {"0" "0#" "1" "1#" "2" "3"
"3#" "4"}
\set TabStaff.stringTunings = #mandolin-tuning
\new TabVoice { \music }
}
>>
}
Regards,
Marc