Markzeichen ercheint anderswo, wo ich möchte.

Begonnen von flashgordonx, Mittwoch, 14. Dezember 2022, 18:22

« vorheriges - nächstes »

flashgordonx

Ich habe ein "MS"-Markzeichen im Alt erstellt, aber erscheint oben Sopran. Was soll ich tun?

\version "2.20.0"

\paper {
  #(set-paper-size "a4")
}

global = {
  \key c \major
  \time 4/4
  \tempo 4=100
}

soprano =  {
  \global
  % Die Noten folgen hier.
  c''8 _-   a'16  f'16  \! r8  bes'8 _-
   ^\< a'16  g'16   ^\> c''8^-   a'16  f'16
}

alto =  {
  \global
  % Die Noten folgen hier.
  a'8 _- ^\>  f'16  c'16  b'8\rest \! g'8 _-
   c'16 ^\<  c'16  \mark \markup{ \circle Ms. } a'8_> ^\>  f'16  c'16\!
   b'8\rest
}

tenor =  {
  \global
  % Die Noten folgen hier.
 f'8^- ^\f ^\>   e'16  d'16   c'16 \!
   d'16  e'16  f'16   e'16 ^-
   f'16   e'16^\<  d'16   c'16
   d'16  e'16 \! f'16 
}

bass = {
  \global
  % Die Noten folgen hier.
  f8^ \f\>  e16  d16   c16 \!
   d16  e16  f16\bar "!"   e16
   f16  e16^\<  d16   c16
   d16  e16  f16 \!
}

verse = \lyricmode {
  % Liedtext folgt hier.
 
}

\score {
  \new ChoirStaff <<
    \new Staff \with {
      instrumentName = "Sopran"
    } \new Voice = "soprano" \soprano
    \new Lyrics \with {
      \override VerticalAxisGroup #'staff-affinity = #CENTER
    } \lyricsto "soprano" \verse
    \new Staff \with {
      instrumentName = "Alt"
    } \new Voice = "alto" \alto
    \new Lyrics \with {
      \override VerticalAxisGroup #'staff-affinity = #CENTER
    } \lyricsto "alto" \verse
    \new Staff \with {
      instrumentName = "Tenor"
    } {
      \clef "treble_8"
      \new Voice = "tenor" \tenor
    }
    \new Lyrics \with {
      \override VerticalAxisGroup #'staff-affinity = #CENTER
    } \lyricsto "tenor" \verse
    \new Staff \with {
      instrumentName = "Bass"
    } {
      \clef bass
      \new Voice = "bass" \bass
    }
  >>
  \layout { }
}

amateur

So?
\version "2.23.6"

\version "2.20.0"

\paper {
  #(set-paper-size "a4")
}

global = {
  \key c \major
  \time 4/4
  \tempo 4=100
}

soprano =  {
  \global
  % Die Noten folgen hier.
  c''8 _-   a'16  f'16  \! r8  bes'8 _-
   ^\< a'16  g'16   ^\> c''8^-   a'16  f'16
}

alto =  {
  \global
  % Die Noten folgen hier.
  a'8 _- ^\>  f'16  c'16  b'8\rest \! g'8 _-
   c'16 ^\<  c'16^\markup{ \circle Ms. } a'8_> ^\>  f'16  c'16\!
   b'8\rest
}

tenor =  {
  \global
  % Die Noten folgen hier.
 f'8^- ^\f ^\>   e'16  d'16   c'16 \!
   d'16  e'16  f'16   e'16 ^-
   f'16   e'16^\<  d'16   c'16
   d'16  e'16 \! f'16
}

bass = {
  \global
  % Die Noten folgen hier.
  f8^ \f\>  e16  d16   c16 \!
   d16  e16  f16\bar "!"   e16
   f16  e16^\<  d16   c16
   d16  e16  f16 \!
}

verse = \lyricmode {
  % Liedtext folgt hier.
 
}

\score {
  \new ChoirStaff <<
    \new Staff \with {
      instrumentName = "Sopran"
    } \new Voice = "soprano" \soprano
    \new Lyrics \with {
      \override VerticalAxisGroup #'staff-affinity = #CENTER
    } \lyricsto "soprano" \verse
    \new Staff \with {
      instrumentName = "Alt"
    } \new Voice = "alto" \alto
    \new Lyrics \with {
      \override VerticalAxisGroup #'staff-affinity = #CENTER
    } \lyricsto "alto" \verse
    \new Staff \with {
      instrumentName = "Tenor"
    } {
      \clef "treble_8"
      \new Voice = "tenor" \tenor
    }
    \new Lyrics \with {
      \override VerticalAxisGroup #'staff-affinity = #CENTER
    } \lyricsto "tenor" \verse
    \new Staff \with {
      instrumentName = "Bass"
    } {
      \clef bass
      \new Voice = "bass" \bass
    }
  >>
  \layout { }
}