Is there a way to align textMarks?
Thanks!

\version "2.24.2"
\score {
  % SOPRANO
  \new StaffGroup << 
    \new Staff  = "soprano" \with { \override InstrumentName.self-alignment-X = 
#RIGHT instrumentName = #"S. " }
    \new Voice = "S" { 
      \relative c' {
        \key c \major
        \omit Score.TimeSignature
        \cadenzaOn
        \override NoteHead.color = #(x11-color "OrangeRed")
        \hide Stem
         \textMark "α)"
        g'4 fis g \( e \) d c \bar "||"
        \textMark "β)"
        g' fis! a g \( f \) e d c \bar "||"
        \textMark "γ)"
        g' \( fis \) f e d c \bar "||"
      }
    }
    \new Lyrics \with { alignAboveContext = "soprano" } {
      \lyricsto "S" {
        \set fontSize = #-1.5
        \override LyricText.font-name = "MusGlyphs"
        "^5" "^4#" "^5""^3" "^2" "^1"
        "^5" "^4#" "^6""^5" "^4n" "^3" "^2" "^1"
        "^5" "^4#" "^4n" "^3" "^2" "^1"
      }
    }
    \new Lyrics {
      \lyricsto "S" {
        \set fontSize = #-1.5
        \override LyricText.font-name = "MusGlyphs"
        "D(^1" "^7#" "^1)" "T(^3" "^2" "^1)"
        "D(^1" "^7#" "^2" "^1)" "T(^4" "^3" "^2" "^1)"
        "D(^1)" "T(^4#" "^4n" "^3 " "^2" "^1)"
      }
    }

    % ALTO
    \new Staff \with { \override InstrumentName.self-alignment-X = #RIGHT 
instrumentName = #"Α. " }
    \relative c' {
      \key c \major
      \override NoteHead.color = #(x11-color "DarkGreen")
      \hide Stem 
      c' b c \( b \) a g
      c b d c \( c \) b a g
      c \( c \) c b a g
    }
    \addlyrics {
      \set fontSize = #-1.5
      \override LyricText.font-name = "MusGlyphs"
      "T(^1" "^7" "^1)" "D(^3" "^2" "^1)"
      "T(^1" "^7" "^2" "^1)" "D(^4" "^3" "^2" "^1)"
      "T(^1)" "D(^4" "^4" "^3 " "^2" "^1)"
    }
  >>
}

Reply via email to