]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/advanced/Alternating-beam-directions.ly
Merge branch 'master' of git+ssh://jneem@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / input / lsr / advanced / Alternating-beam-directions.ly
1 \version "2.10.12"
2
3 \header { texidoc = "
4 <p>The eighth notes may be seemingly attached to different
5     beams, and the corresponding notes connected by ties. 
6     Such a situation may occur, for example, in the cello suites.
7 " }
8
9 wipeNote = {
10     \once \override NoteHead #'transparent = ##t
11     \once \override Stem #'transparent = ##t 
12 }
13 \layout { raggedright = ##t }
14
15
16 \relative c''<< {
17     c8[~
18        \wipeNote
19        c8
20        c8~
21        \wipeNote
22        c
23        c]~
24     \wipeNote
25     c\noBeam
26 }\\
27    { s8 c8 [ s c s c] }
28
29    
30 >>
31