]> git.donarmstrong.com Git - lilypond.git/blob - input/test/beam-alternate.ly
fix keep-inside-line on the left side (issue #130)
[lilypond.git] / input / test / beam-alternate.ly
1
2 \header {
3
4     texidoc = "The eighth notes may be seemingly attached to different
5     beams, and the corresponding notes connected by ties (see also
6     @file{tie-cross-voice.ly}). 
7     Such a situation may occur, for example, in the cello suites."
8
9 }
10
11 \version "2.7.39"
12
13 wipeNote = {
14     \once \override NoteHead #'transparent = ##t
15     \once \override Stem #'transparent = ##t 
16 }
17 \layout { ragged-right = ##t }
18
19
20 \relative c''<< {
21     c8[~
22        \wipeNote
23        c8
24        c8~
25        \wipeNote
26        c
27        c]~
28     \wipeNote
29     c\noBeam
30 }\\
31    { s8 c8 [ s c s c] }
32
33    
34 >>