]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/note-group-bracket.ly
*** empty log message ***
[lilypond.git] / input / regression / note-group-bracket.ly
1 \version "1.7.18"
2
3 \header {
4
5     texidoc = "Note grouping events are used to indicate where
6 brackets for analysis start and end.
7
8 @cindex bracket
9 @cindex note groups
10 @cindex music analysis
11 @cindex analysis
12
13 "
14     
15 }
16
17
18
19 \score {
20     \notes
21     {
22         c4-\startGroup-\startGroup-\startGroup
23         c4-\stopGroup
24         c4-\startGroup
25         c4-\stopGroup-\stopGroup
26         c4-\startGroup
27         c4-\stopGroup-\stopGroup
28     }
29
30     \paper {
31         \translator {
32             \StaffContext \consists "Horizontal_bracket_engraver"
33         }
34         raggedright = ##t
35     }
36 }
37