1\version "2.17.28"
2
3\header
4{
5  texidoc = "A separate @samp{Grace_auto_beam_engraver} initiates
6autobeaming at the start of each @code{\\grace} command."
7}
8
9\layout { short-indent = 1\cm  indent = 2\cm }
10
11music = {
12  \mark "manual"
13  \relative c'' {
14    \grace {a8[ b] } a1
15    \grace {a8[ b c b gis] } a1
16    \grace {a8[ b c32 b c16 gis] } a1
17    \grace {a8[ b c16 d] c4 b8[ gis] } a1
18    \grace {a8[ b c16 d] c4 b8 a b\fermata a16[ gis] } a1
19  } \break
20  \mark "automatic"
21  \relative c'' {
22    \grace {a8 b } a1
23    \grace {a8 b c b gis } a1
24    \grace {a8 b c32 b c16 gis } a1
25    \grace {a8 b c16 d c4 b8 gis } a1
26    \grace {a8 b c16 d c4 b8 a b\fermata a16 gis } a1
27  }
28}
29
30\score {
31  <<
32    \new Staff \with { instrumentName = \markup \center-column
33		       { without engraver } }
34    \new Voice \with { \remove "Grace_auto_beam_engraver" }
35               \music
36    \new Staff \with { instrumentName = \markup \center-column
37		       { with engraver } }
38    \new Voice \music
39  >>
40}
41