]> git.donarmstrong.com Git - lilypond.git/blob - input/test/clef-8-syntax.ly
* scripts/lilypond-book.py (do_file): do not overwrite input file.
[lilypond.git] / input / test / clef-8-syntax.ly
1
2 \version "2.1.26"
3 \header {
4     texidoc = "@cindex Chord Octavation
5 Appending @code{_8} or @code{^8} to a clef name will
6 add an octavation sign to the clef, although the clef
7 name needs to be in quotes (such as \"treble^8\").
8 " }
9
10 \score { 
11   \context Voice \notes\relative c {
12   \clef "bass_8" c4 c c c |
13   \clef "treble^8" c'''4 c c c |
14   }
15   \paper {
16     raggedright = ##t
17   }  
18   \midi { }
19 }
20
21