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