lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Colored scores for Rock bandconsisting of members with mental disabl


From: Andrew Bernard
Subject: Re: Colored scores for Rock bandconsisting of members with mental disablilities
Date: Mon, 12 Feb 2018 14:52:05 +1100

Hi Hallvard,

An example, quick rough, but may be good for starting out.

Since this is 'non-standard', it's slightly advanced and so it involves a few markup concepts that are just a bit above beginner level. But have a good read up in Markup in the Notation Reference, and I would be happy to help you out with any problems, as would many others I am sure.



Andrew

====
\version "2.19.81"

\relative c'' {
  a1
  % place in bottom layer
  -\tweak layer #-1
  -\markup {
    \with-dimensions #'(0 . 0) #'(0 . 0)
    % specify color
    \with-color #(rgb-color 1 0.5 0.5)
    % specify size
    \filled-box #'(-2 . 6) #'(0 . 5) #0
  }

  a
  -\tweak layer #-1
  -\markup {
    \with-dimensions #'(0 . 0) #'(0 . 0)
    % specify color
    \with-color #(rgb-color 0.2 0.5 0.5)
    % specify size
    \filled-box #'(-2 . 6) #'(0 . 5) #0
  }

  a
  -\tweak layer #-1
  -\markup {
    \with-dimensions #'(0 . 0) #'(0 . 0)
    % specify color
    \with-color #(rgb-color 0.2 0.3 0.6)
    % specify size
    \filled-box #'(-2 . 6) #'(0 . 5) #0
  }

  a
  -\tweak layer #-1
  -\markup {
    \with-dimensions #'(0 . 0) #'(0 . 0)
    % specify color
    \with-color #(x11-color 'DarkRed)
    % specify size
    \filled-box #'(-2 . 6) #'(0 . 5) #0
  }

}
====



reply via email to

[Prev in Thread] Current Thread [Next in Thread]