]> git.donarmstrong.com Git - lilypond.git/blob - input/test/manual-clef.ly
release: 1.3.106
[lilypond.git] / input / test / manual-clef.ly
1 \version "1.3.105";
2
3 %{
4
5 Test clef engraver by setting \property directly. \clef is merely a front-end  to this.
6
7 %}
8
9 \score { \notes {
10   \property Staff.clefGlyph = #"clefs-F"
11   \property Staff.clefPosition = #2
12   c'4
13   \property Staff.clefGlyph = #"clefs-G"
14   c'4
15   \property Staff.clefGlyph = #"clefs-C"
16
17   c'4
18         \property Staff.clefOctavation = #7 
19   c'4
20         \property Staff.clefOctavation = #0 
21         \property Staff.clefPosition = #0
22   c'4
23         \clef "bla";
24   c'4
25
26 }}