lilypond-user
[Top][All Lists]
Advanced

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

Re: tempo


From: Thomas Morley
Subject: Re: tempo
Date: Sun, 23 May 2021 17:02:46 +0200

Am So., 23. Mai 2021 um 10:31 Uhr schrieb Mario Moles <mario.moles73@gmail.com>:
>
> Yes, I saw! Thank you. But I have to figure out how to enter these commands:
> \override Flag.stencil = #old-straight-flag
> \override NoteHead.transparent = ##t
>
> Il giorno sab 22 mag 2021 alle ore 18:22 Mark Stephen Mrotek 
> <carsonmark@ca.rr.com> ha scritto:
>>
>> Mario,
>>
>> Look at
>> https://lsr.di.unimi.it/LSR/Item?id=574
>>
>> Mark
>>
>> -----Original Message-----
>> From: lilypond-user
>> [mailto:lilypond-user-bounces+carsonmark=ca.rr.com@gnu.org] On Behalf Of
>> Mario Moles
>> Sent: Saturday, May 22, 2021 1:35 AM
>> To: lilypond-user@gnu.org
>> Subject: tempo
>>
>> Hi lilyponders!
>>
>> How to make this? Like \markup ? Or other?
>>
>> Thanks
>>
>>

I'd rather go for
https://lsr.di.unimi.it/LSR/Item?id=1029
->


#(define-markup-command (ezscore layout props mus) (ly:music?)
  #:properties ((size 0))
  (interpret-markup layout props
    #{
      \markup {
        \score {
          \new RhythmicStaff { $mus }
          \layout {
            \context {
              \RhythmicStaff
              \remove Clef_engraver
              \remove Time_signature_engraver
              \omit StaffSymbol
              fontSize = #size
              \override StaffSymbol.staff-space = #(magstep size)
              \override StaffSymbol.thickness = #(magstep size)
            }
            indent = 0
          }
        }
      }
    #}))

\markup \concat {
      \fontsize #3 "("
      \override #'(size . -3)
      \ezscore
        ##{ \omit NoteHead \override Flag.stencil = #old-straight-flag b8 #}
      "="
      \override #'(size . -3)
      \ezscore ##{ b4 #}
      \hspace #0.3
      \fontsize #3 ")"
}


Cheers,
  Harm



reply via email to

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