Dies ist das Archiv des alten Forums (bis März 2017). Das aktuelle Forum ist unter https://lilypondforum.de zu finden. This is the archive of the old forum (until March 2017). You can find the current forum at https://lilypondforum.de.
\version "2.16.2"rhythmMarkStaffReduce = #-3rhythmMarkLabelFontSize = #-2rhythmMark = #(define-music-function (parser location musicI tempo) (ly:music? string?) #{ \mark \markup { \line \general-align #Y #DOWN { \combine \transparent \italic \fontsize #rhythmMarkLabelFontSize f \score { % 2nd column in line \new Staff \with { fontSize = #rhythmMarkStaffReduce \override StaffSymbol #'staff-space = #(magstep rhythmMarkStaffReduce) \override StaffSymbol #'line-count = #0 \override VerticalAxisGroup #'Y-extent = #'(-0.85 . 4) } { \relative { \stemUp $musicI } % \override Score.SpacingSpanner #'strict-note-spacing = ##t \once \override Score.TextScript #'Y-offset = #-0.4 s4.^\markup{ \halign #-1 \italic "=" $tempo } } \layout { ragged-right= ##t indent = 0 \context { \Staff \remove "Clef_engraver" \remove "Time_signature_engraver" } } % layout end } % Score end } % line end } % markup end #})tempoMark = { \time 5/4 b'4. ~ b4}\score { { \once \override Score.RehearsalMark #'X-offset = #5 % td \rhythmMark \tempoMark "60" \time 5/8 c'8 d' e' f' g' | a' } \layout { ragged-right= ##t indent = 0 }}
s4.^\markup{ \halign #-1 \italic \huge { "=" $tempo } }
\version "2.16.2"rhythmMark = #(define-music-function (parser location tempo) (string?) #{ \mark \markup { \score { \new Staff \with { fontSize = #-2 \override StaffSymbol #'line-count = #0 \override VerticalAxisGroup #'Y-extent = #'(-0.85 . 4) } { s4.^\markup{ \halign #-1 \italic { $tempo } } } \layout { ragged-right= ##t indent = 0 \context { \Staff \remove "Clef_engraver" \remove "Time_signature_engraver" } } % layout end } % Score end } % markup end #})\score { { \once \override Score.RehearsalMark #'X-offset = #5 \rhythmMark "5/8 = ca. 66" \time 5/8 c'8 d' e' f' g' | a' }}
\score { \new Staff { \override Score.RehearsalMark #'break-align-symbols = #'(time-signature) \mark \markup { \tiny \italic {"5/8 = ca. 66"}} c'1 }}
\rhythmMark \tempoMark "60"
\rhythmMark \tempoMark "ca 66"
s4.^\markup{ \halign #-1 \italic "=" $tempo }
s4.^\markup{ \halign #-1 \italic $tempo }