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