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