\version "2.25.34"
mus = \relative {
c''4 c c c c c c c, }
\layout {
\context {
\Voice
\name SingVoice
\alias Voice
}
\context {
\Staff
\RemoveAllEmptyStaves
\accepts SingVoice
}
}
\paper {
ragged-bottom = ##t
indent = 0
top-margin = #20
tagline = ##f
line-width = #150
}
\new StaffGroup
<<
\new Staff {
\new SingVoice = "Intro" { s1 * 2 \break }
\new SingVoice = "Mel"
\with {
\consists "Ambitus_engraver"
\override AmbitusNoteHead.break-visibility = ##(#f #f #t)
\override AmbitusLine.break-visibility = ##(#f #f #t)
\override AmbitusAccidental.break-visibility = ##(#f #f #t)
%\ambitusAfter time-signature
}
{ \mus \mus }
}
\new Lyrics \lyricsto "Mel" { \repeat unfold 16 bla }
\new PianoStaff
<<
\new Staff { \mus \mus \mus }
\new Staff {
\clef bass
\transpose c c,, { \mus \mus \mus }
}
>>
>>
Zitat von: martinmagtenor am Samstag, 14. März 2026, 20:10Danke, die Einschränkung bei den RehearsalMark war mir nicht bewusst gewesen.
\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 "|."
\override Score.TextMark.self-alignment-X = #CENTER
\textEndMark \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
\tweak direction #DOWN
\textEndMark \markup { \musicglyph "scripts.dfermata" }
}
>>
} % score
Grüße
Martin
\version "2.25.34"
%% http://lsr.di.unimi.it/LSR/Item?id=10
\paper {
indent = 0\mm
}
\score {
\new GrandStaff <<
\context Staff = "one" {
c'1 \bar "|."
\override Score.TextMark.self-alignment-X = #CENTER
\textEndMark \markup { \musicglyph "scripts.ufermata" }
}
\context Staff = "two" {
c'1
\tweak direction #DOWN
\textEndMark \markup { \musicglyph "scripts.dfermata" }
}
>>
}
\version "2.24.4"
SoloMusic = \relative {
\key c \major
\partial 4
g'4 g4. g8 g8 e4. \break }
VerseOne = \lyricmode {
\set stanza = "Solo: 1."
Man sagt er sei ein }
VerseTwo = \lyricmode {
\set stanza = "Duett: 2."
Man sagt er war ein }
VerseThree = \lyricmode {
\set stanza = "Alle: 3."
Man sagt, er war ein }
VerseFore = \lyricmode {
\set stanza = "4."
Man sagt er war Po }
VerseFive = \lyricmode {
\set stanza = "5."
Er ist der Sohn des }
SopranoMusic = \relative {
\key d \major
\partial 4
a'4 a4. a8 a8 fis4. }
TenorMusic = \relative {
\key d \major
\partial 4
a'4 a4. a8 a8 a4. }
\score {
\new ChoirStaff \relative c'' {
\new Staff <<
\new Voice = "solo" {
\SoloMusic
}
\new Lyrics \lyricsto "solo" \VerseOne
\new Lyrics \lyricsto "solo" \VerseTwo
\new Lyrics \lyricsto "solo" \VerseThree
>>
<< { \SopranoMusic }
\new Staff {
\once \set Staff.explicitKeySignatureVisibility = #end-of-line-invisible
\once \omit Staff.TimeSignature
\TenorMusic
}
>>
}
\layout { }
}
\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?