Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(390)

Delta Between Two Patch Sets: Documentation/snippets/new/making-an-object-invisible-with-the-transparent-property.ly

Issue 6635050: Make arguments like Context.GrobName accessible as symbol lists (Closed) Base URL: http://git.savannah.gnu.org/gitweb/?p=lilypond.git/trunk/
Left Patch Set: Fix a few bugs, modify \tweak syntax, demonstrate high impact conversion Created 12 years, 5 months ago
Right Patch Set: Allow \override Accidental.color = #red (dot between grob and property) Created 12 years, 5 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
LEFTRIGHT
1 \version "2.17.5" 1 \version "2.17.6"
2 2
3 \header { 3 \header {
4 lsrtags = "rhythms, simultaneous-notes, tweaks-and-overrides" 4 lsrtags = "rhythms, simultaneous-notes, tweaks-and-overrides"
5 5
6 texidoc = " 6 texidoc = "
7 Setting the @code{transparent} property will cause an object to be 7 Setting the @code{transparent} property will cause an object to be
8 printed in @qq{invisible ink}: the object is not printed, but all its 8 printed in @qq{invisible ink}: the object is not printed, but all its
9 other behavior is retained. The object still takes up space, it takes 9 other behavior is retained. The object still takes up space, it takes
10 part in collisions, and slurs, ties and beams can be attached to it. 10 part in collisions, and slurs, ties and beams can be attached to it.
11 11
12 12
13 This snippet demonstrates how to connect different voices using ties. 13 This snippet demonstrates how to connect different voices using ties.
14 Normally, ties only connect two notes in the same voice. By 14 Normally, ties only connect two notes in the same voice. By
15 introducing a tie in a different voice, and blanking the first up-stem 15 introducing a tie in a different voice, and blanking the first up-stem
16 in that voice, the tie appears to cross voices. 16 in that voice, the tie appears to cross voices.
17 17
18 " 18 "
19 doctitle = "Making an object invisible with the 'transparent property" 19 doctitle = "Making an object invisible with the 'transparent property"
20 } 20 }
21 21
22 \relative c'' { 22 \relative c'' {
23 \time 2/4 23 \time 2/4
24 << 24 <<
25 { 25 {
26 \once \override Stem transparent = ##t 26 \once \override Stem.transparent = ##t
27 \once \override Stem length = #8 27 \once \override Stem.length = #8
28 b8 ~ b\noBeam 28 b8 ~ b\noBeam
29 \once \override Stem transparent = ##t 29 \once \override Stem.transparent = ##t
30 \once \override Stem length = #8 30 \once \override Stem.length = #8
31 g8 ~ g\noBeam 31 g8 ~ g\noBeam
32 } 32 }
33 \\ 33 \\
34 { 34 {
35 b8 g g e 35 b8 g g e
36 } 36 }
37 >> 37 >>
38 } 38 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b