]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/context-string-tuning.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / context-string-tuning.ly
1 \version "2.16.0"
2
3 \header {
4   texidoc="
5 Using \contextStringTuning does not break compiling.
6 "
7 }
8
9 mynotes = {
10   c'4 e' g' c'' |
11   e''4 g'' b'' c'''
12 }
13
14 <<
15   \new Staff {
16     \clef treble
17     \mynotes
18   }
19   \new TabStaff {
20     #(define custom-tuning #{ \stringTuning <c' g' d'' a''> #})
21     \set Staff.stringTunings = #custom-tuning
22     \mynotes
23   }
24 >>
25