]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/beam-extreme.ly
3c3bb28577e083789e57030644a4449157ffacc6
[lilypond.git] / input / regression / beam-extreme.ly
1 \header{
2 texidoc="
3 Beams should behave reasonably well, even under extreme circumstances.
4 Stems may be short, but noteheads should never touch the beam.  Note that
5 under normal circumstances, these beams would get knees; here
6 Beam.auto-knee-gap was set to false.
7 ";
8 }
9 \version "1.3.117";
10 \score{
11         \notes\relative c''{
12                 [g8 c c,]
13                 [c16 c'' a f]
14                 \stemUp 
15                 [c,,32 c'' a f]
16
17         }
18         \paper{
19                 linewidth=-1.;
20                 \translator {
21                         \VoiceContext
22                         % If we want to test extreme beams,
23                         % we should not have them auto-kneed
24                         Beam \override #'auto-knee-gap = ##f
25                 }
26         }
27 }