]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/other/making-an-object-invisibile-with-the-transparent-property.ly
Merge branch 'master' of ssh+git://hanwen@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / input / lsr / other / making-an-object-invisibile-with-the-transparent-property.ly
1 %%  Do not edit this file; it is auto-generated from LSR!
2 \version "2.11.23"
3
4 \header { texidoc = "
5 Setting the @code{transparent} property will cause an object to be
6 printed in `invisible ink': the object is not printed, but all its
7 other behavior is retained.  The object still takes up space, it takes
8 part in collisions, and slurs, and ties and beams can be attached to it.
9
10
11 The snippet demonstrates how to connect different voices using ties. 
12 Normally, ties only connect two notes in the same voice.  By
13 introducing a tie in a different voice, and blanking the first up-stem
14 in that voice, the tie appears to cross voices. 
15 " }
16
17 \relative c'' {
18 << {
19   \once \override Stem #'transparent = ##t
20   b8~ b8\noBeam
21 } \\ {
22   b[ g8]
23 } >>
24 }