]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tablature-string-tunings.ly
Change stringTunings from list of semitones to list of pitches
[lilypond.git] / input / regression / tablature-string-tunings.ly
1 \version "2.13.46"
2
3 \header {
4
5   texidoc = "For other tunings, it is sufficient to set
6     @code{stringTunings}. The number of staff lines is adjusted
7     accordingly."
8
9 }
10
11
12 \new TabStaff {
13   \set TabStaff.stringTunings = #`(,(ly:make-pitch 0 3 0)
14                                    ,(ly:make-pitch 0 5 SHARP)
15                                    ,(ly:make-pitch 1 1 SHARP)
16                                    ,(ly:make-pitch 1 4 SHARP))
17   \relative c''  { c4 d e f }
18 }
19
20