]> git.donarmstrong.com Git - lilypond.git/blob - input/test/clef-manual-control.ly
* scripts/lilypond-book.py (do_file): do not overwrite input file.
[lilypond.git] / input / test / clef-manual-control.ly
1 \version "2.1.26"
2 \header{ texidoc = "
3
4 @cindex Clef Manual Control
5
6 You can use the clef engraver by using @code{\property} directly.
7 @code{\clef} is merely a front-end to this. All the notes in this
8 example are central C."
9
10 }
11
12 \score { \notes {
13   \set Staff.clefGlyph = #"clefs-F"
14   \set Staff.clefPosition = #2
15   c'4
16   \set Staff.clefGlyph = #"clefs-G"
17   c'4
18   \set Staff.clefGlyph = #"clefs-C"
19
20   c'4
21         \set Staff.clefOctavation = #7 
22   c'4
23         \set Staff.clefOctavation = #0 
24         \set Staff.clefPosition = #0
25   c'4
26         \clef "bass"
27   c'4
28
29 }
30         \paper{ raggedright = ##t }
31 }
32