]> git.donarmstrong.com Git - lilypond.git/blob - input/bugs/partial-beam.ly
patch::: 1.3.134.jcn1
[lilypond.git] / input / bugs / partial-beam.ly
1
2 \include "paper20.ly"
3 Sopnotes = \notes {
4         \time 4/4;
5         \key g \major;
6         \clef treble;
7         \partial 8 * 3;
8         e'8 f'8 g'8 |
9         d'8 d'16 d'16 e'8. e'16 g'8 g'8 f'8 f'8
10 }
11
12 \score {
13         \notes
14         <
15                 \context Staff="sop"
16                 <
17                     \Sopnotes
18                 >
19         >
20         \paper {
21                 \translator {
22                  \StaffContext 
23                         autoBeamSettings \override #'(end * * * * ) = #(make-moment 1 8)
24                 }
25         }
26 }