Hello Zon,

I do not completely understand what marking you wish to achieve, but usually 
you can do such more complex marking by simply using score within your markup, 
remove anything but the notes and scale them to whatever you want.

See this example (but I don’t know if this is what you consider a dotted 
eighth-note triplet).

Cheers,
Valentin

Am Freitag, 15. Oktober 2021, 21:05:48 CEST schrieb Zone Dremik:
> Hello,
> 
> Does anyone have code I could use to indicate a tempo marking that shows two
> barred eighth-notes equal to a dotted eighth-note triplet?
> 
> Also, as a general inquiry, what would be needed to have notation in a
> markup? (Would this be a major Scheme coding project!?)
> 
> I've searched through the documentation, and the group postings, but I
> suspect I'm not using the right search terms. Any direction would be
> appreciated.
> 
> Thanks,
> 
> Zon D.
\language "deutsch"

scoreA = \markup\score {
  {\stopStaff \tiny \stemUp h'8[ 8] }
  \layout {
    \context {
      \Staff
      \remove Clef_engraver
      \remove Time_signature_engraver
      \override Stem.length-fraction = #0.7
      \override Beam.length-fraction = #0.8
      \override Beam.beam-thickness = #0.45
    }
    \context {
      \Score proportionalNotationDuration = #(ly:make-moment 1/8)
    }
    indent = 0}

}

scoreB = \markup\score {
  {\stopStaff\time 2/8 \tiny \stemUp \times 2/3 { h'8.[ h'] } }
  \layout {
    \context {
      \Staff
      \remove Clef_engraver
      \remove Time_signature_engraver
      \override Stem.length-fraction = #0.7
      \override Beam.length-fraction = #0.8
      \override Beam.beam-thickness = #0.45
    }
    \context {
      \Score proportionalNotationDuration = #(ly:make-moment 1/8)
    }
    indent = 0}
}

{
  \tempo \markup { "Some tempo marking"
                        
                   \bracket\concat {
                         \scoreA
                         " " =
                         \scoreB
  
  }} 4=120 c'4
}

Attachment: signature.asc
Description: This is a digitally signed message part.

Reply via email to