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