lilypond-user
[Top][All Lists]
Advanced

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

Re: Contemporary music


From: Nathan
Subject: Re: Contemporary music
Date: Fri, 17 Feb 2012 14:23:38 -0800

On Fri, Feb 17, 2012 at 2:03 PM, Mario Moles <address@hidden> wrote:
> Hi lilyponders!
>
> How do you make this contemporary sign
>
> Thanks!
> --
>
> oiram/bin/selom
>
> Da ognuno secondo le proprie capacità ad ognuno secondo i propri bisogni.
>
>
> _______________________________________________
> lilypond-user mailing list
> address@hidden
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>

\version "2.14.2"

contempPath = #'((moveto 0.0 0.0)
                 (curveto -1.1 1.1 -0.5 1.5 0.5 0.5)
                 (lineto 1.1 1.1)
                 (closepath))

#(define-markup-command (contempSignMarkup layout props) ()
   (interpret-markup layout props
     (markup #:override '(filled . #t) #:path 0.25 contempPath)))

contempSign = \markup \contempSignMarkup

\relative c'' {
  c16-.^\contempSign r8
}

Feel free to adjust the points in \contempPath so the shape is more to
your liking.

Note that you can't do c16\contempPath. You have to attach it using -, ^, or _.

Hope this helps!



reply via email to

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