\version "2.24.4" % Lily-Version
\include "deutsch.ly"
#(set-default-paper-size "a6" 'landscape )
\layout {
\context { % durchgezogene Taktlinien
\Score \consists Span_bar_engraver
}
}
\score {
<<
\time 4/4
\new GrandStaff = "Orgel"
<<
\set GrandStaff.instrumentName = #"Man."
\new Staff = "rechte Hand" \relative c'' { \repeat unfold 2 { c4 c c c | } \bar "|."
% Fermate über den Schluss-Taktstrich
\mark \markup { \musicglyph "scripts.ufermata" }
}
\new Staff = "linke Hand"
\relative c { \clef bass \repeat unfold 2 { c4 c c c | } \bar "|." }
>>
\new Staff = "Pedal" \with { \consists "Mark_engraver" } \relative c'
{
\set Staff.instrumentName = #"Ped."
\clef bass \relative c \repeat unfold 2 { g4 g g g | } \bar "|."
% Fermate unter den Schluss-Taktstrich
\override Staff.RehearsalMark.direction = #DOWN
\mark \markup { \musicglyph "scripts.fermata" }
}
>>
} % score
Processing `fermata-on-final-bar.ly'
Parsing...
Interpreting music...
fermata-on-final-bar.ly:19:17: warning: conflict with event: `ad-hoc-mark-event'
\mark \markup { \musicglyph "scripts.ufermata" }
fermata-on-final-bar.ly:30:11: warning: discarding event: `ad-hoc-mark-event'
\mark \markup { \musicglyph "scripts.fermata" }
Preprocessing graphical objects...
Finding the ideal number of pages...
Fitting music on 1 page...
Drawing systems...
\version "2.25.34"
mus = \relative {
c''4 c c c c c c c, }
\layout {
\context {
\Voice
\name SingVoice
\alias Voice
\consists "Ambitus_engraver"
\ambitusAfter time-signature
}
\context {
\Staff
\RemoveAllEmptyStaves
\accepts SingVoice
}
}
\paper {
ragged-bottom = ##t
indent = 0
top-margin = #20
tagline = ##f
line-width = #150
}
\new StaffGroup
<<
\new Staff
\new Voice
{
s1 * 2 \break
\mus \mus
}
\new PianoStaff
<<
\new Staff { \mus \mus \mus }
\new Staff {
\clef bass
\transpose c c,, { \mus \mus \mus }
}
>>
>>
\new StaffGroup
<<
\new Staff
\new SingVoice
{
s1 * 2 \break
\mus \mus
}
\new PianoStaff
<<
\new Staff { \mus \mus \mus }
\new Staff {
\clef bass
\transpose c c,, { \mus \mus \mus }
}
>>
>>Zitat von: FlohR am Donnerstag, 12. März 2026, 22:15Zusatzfrage:
zwischen zwei Akkorden werden anscheinend weder Ties noch Slurs verstärkt.
Gibt es dafür eine Erklärung?
\version "2.24.2"
\score {
\new Staff \relative c {
\clef bass
\time 4/4
\mark\markup{\box{\bold A}}
\repeat volta 4 {} \alternative{
{
c8 d e f g f e d
}
}
\break
\mark\markup{\box{\bold B}}
\repeat volta 4 {} \alternative{
{
g8 f e d c d e f
}
}
}
}