diff options
author | Graham Percival <graham@percival-music.ca> | 2008-03-02 18:21:49 -0800 |
---|---|---|
committer | Graham Percival <graham@percival-music.ca> | 2008-03-02 18:21:49 -0800 |
commit | e77df60bf07220db5d2211a0b0a326f3644a2ccb (patch) | |
tree | 8e9c119e90b0d8cc20fa302d95d810451ec7f45f /Documentation | |
parent | 4f8545a62f0dc5c79261d4fee2019415163b5dd9 (diff) |
Update from Jay.
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/user/editorial.itely | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/Documentation/user/editorial.itely b/Documentation/user/editorial.itely index 342cf58ad7..7c37e6a039 100644 --- a/Documentation/user/editorial.itely +++ b/Documentation/user/editorial.itely @@ -245,10 +245,12 @@ If @code{x11-color} cannot make sense of the parameter then the color returned defaults to black. @lilypond[quote,ragged-right,verbatim,fragment,relative=2] + \override Staff.StaffSymbol #'color = #(x11-color 'SlateBlue2) \set Staff.instrumentName = \markup { \with-color #(x11-color 'navy) "Clarinet" } + gis8 a \override Beam #'color = #(x11-color "medium turquoise") gis a @@ -259,12 +261,13 @@ gis a % this is deliberate nonsense; note that the stems remain black \override Stem #'color = #(x11-color 'Boggle) b2 cis + @end lilypond You can get exact RGB colors by specifying the rgb-color number. @lilypond[quote,ragged-right,verbatim,fragment,relative=2] -{ + \override Staff.StaffSymbol #'color = #(x11-color 'SlateBlue2) \set Staff.instrumentName = \markup { \with-color #(x11-color 'navy) "Clarinet" @@ -279,7 +282,7 @@ You can get exact RGB colors by specifying the rgb-color number. % dark blue \override Stem #'color = #(rgb-color 0 0 0.5) gis4 a -} + @end lilypond @seealso @@ -397,10 +400,11 @@ The following example demonstrates its use. { \time 2/4 \balloonGrobText #'Stem #'(3 . 4) \markup { "I'm a Stem" } - a'8 - <c' g'-\balloonText #'(-2 . -2) \markup { "I'm a note head" } -c''>4. + a8 + <c, g'-\balloonText #'(-2 . -2) \markup { "I'm a note head" } +c>4. } + @end lilypond There are two music functions, @code{balloonGrobText} and |