]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/context-string-tuning.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond into...
[lilypond.git] / input / regression / context-string-tuning.ly
1 \version "2.14.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     \contextStringTuning #'custom-tuning <c' g' d'' a''>
21     \mynotes
22   }
23 >>
24