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