• Willkommen im Forum „Archiviertes Lilypond Forum (2017)“.
 

Dies ist das Archiv des alten Forums (bis März 2017). Das aktuelle Forum ist unter lilypondforum.de zu finden.
This is the archive of the old forum (until March 2017). You can find the current forum at lilypondforum.de.

Hauptmenü

Fermata auf Taktstrich

Begonnen von flashgordon, Freitag, 6. März 2015, 16:47

Vorheriges Thema - Nächstes Thema

flashgordon

Hallo Lilypond-Fans

Ich habe in der Dokumentation von Lilypond volgenden Befehl gefunden: c1 \mark \markup { \musicglyph #"scripts.ufermata" }

Es funktioniert bei mir aber Fermata ist bei dem Chorwek nur bei einer Stimme sichtbar.

Was wäre die Lösung? :)

\version "2.18.2"

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

soprano = \relative c'' {
  \global
  c1 \mark \markup { \musicglyph #"scripts.ufermata" } c
 
}

alto = \relative c' {
  \global
c1 \mark \markup { \musicglyph #"scripts.ufermata" } c
 
}

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
  >>
  \layout { }
}

RobUr

Du musst den Mark_engraver vom \Score- in den \Staff-Context verschieben:

\layout {
\context {
\Staff
\consists "Mark_engraver"
}
\context {
\Score
\remove "Mark_engraver"
}
}

flashgordon

und funktioniert. Vielen dank. :)