Liebe Wissende,
wie erzeuge ich einen Segno-Taktstrich am Ende eines Stückes?
\version "2.22.1"
\include "deutsch.ly"
\score {
<<
\new Staff
<<
\new Voice \relative c'' {
c1 c c c
\bar "S"
c c c c
\override Staff.BarLine.after-line-breaking = ##t
\tweak self-alignment-X #RIGHT
\mark \markup \italic \normalsize "D. S. al Fine"
\bar "S"
}
>>
>>
\layout{}
}
Leider ist das letzte \bar "S" nicht sichtbar:
Hallo,
setze hinter das letzte \bar "S" einfach \grace s128.
Nicht sehr elegant, aber es klappt.
Gruß,
Reinhard
probier mal
\bar "S-S"
Genau diese Lösung wollte ich auch vorschlagen
\score {
<<
\new Staff
<<
\new Voice \relative c'' {
c1 c c c
\bar "S"
c c c c
\override Staff.BarLine.after-line-breaking = ##t
\tweak self-alignment-X #RIGHT
\mark \markup \italic \normalsize "D. S. al Fine"
\bar "S-S"
}
>>
>>
}
Zitat von: thomas am Freitag, 28. Juni 2024, 16:25probier mal
\bar "S-S"
Das hat funkioniert, vielen Dank!