bug-lilypond
[Top][All Lists]
Advanced

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

Re: changing flag style/stencil should affect metronome mark, shouldn't


From: Federico Bruni
Subject: Re: changing flag style/stencil should affect metronome mark, shouldn't it?
Date: Sun, 06 Jan 2013 16:56:44 +0100
User-agent: Mozilla/5.0 (X11; Linux i686; rv:10.0.11) Gecko/20121123 Icedove/10.0.11

Il 06/01/2013 16:09, Karol Majewski ha scritto:
Hi there,

I don't see how can change flag style (stencil) in metronome mark.


\version "2.17.9"
{
   \override Flag.stencil = #old-straight-flag
   \set autoBeaming = ##f
   \tempo 8 = 120
   c'8 d' e' f' g' a' b' c''
}

I wish *\override Flag.stencil = #old-straight-flag* worked. Unfortunately,
it doesn't.

The override has been applied to music, not to the metronome mark.
IIUC, MetronomeMark is a markup object. In the thirdd snippet here you find an example to modify it:
http://lilypond.org/doc/v2.17/Documentation/notation/displaying-rhythms#metronome-marks

I know that you can modify the notehead style inside a markup, I don't know if you can also modify the flag style.

See this example:

\version "2.17.10"
{
  \set autoBeaming = ##f
  \tempo \markup {
    \concat {
      (
      \smaller \general-align #Y #DOWN
      \override #'(style . mensural) {
        \note #"8" #1
      }
      " = "
      \general-align #Y #DOWN 120
      )
    }
  }
  c'8 d' e' f' g' a' b' c''
  \override Flag.stencil = #old-straight-flag
  c' d' e' f' g'
}





reply via email to

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