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