lilypond-vorlagen/lieder/vorlage_satz/vorlage_satz.ly

113 lines
1.5 KiB
Plaintext
Raw Normal View History

2023-07-22 22:09:10 +02:00
\version "2.18.0"
2023-07-22 22:09:10 +02:00
\include "../../lilypond-custom-includes/base_config.ly"
2023-07-22 22:09:10 +02:00
HEADER = \bookpart {
\header {
title = "Chorsatz"
alttitle = ""
poet = "Worte: "
composer = "Weise: "
categories = ""
songinfo = ""
}
}
global = {
%Takt
\time 4/4
%Tonart
\key e \minor
}
firstVerse = \lyricmode {
\set stanza = "1."
Stimmumfang
}
secondVerse = \lyricmode {
\set stanza = ""
}
Sopran = \relative c'' { \set Staff.midiInstrument = #"choir aahs"
\global
c,1 a' fis'
\bar "|."
}
Alt = \relative c' {
\global
g d' d'
}
Tenor = \relative c {
\global
\clef bass %\clef "treble_8"
c1 a' fis'
}
Bass = \relative c {
\global
\clef bass
g g' c
}
MUSIC = {
<<
\chords {
}
\new ChoirStaff = "firstStaff"
<<
\new Voice = "Sopran" { \Sopran }
\addlyrics { \firstVerse }
\addlyrics { \secondVerse }
\new Voice = "Alt" { \Alt}
\new Voice = "Tenor" { \Tenor}
\new Voice = "Bass" { \Bass }
>>
>>
}
TEXT = \markuplist {
\group-verses {
\chordverse #"3."
#""
}
}
% nur Output wenn noStandaloneOutput nicht gesetzt oder auf false steht
output = #(if isStandAlone
#{
2023-07-22 22:09:10 +02:00
\bookpart {
2023-07-22 22:09:10 +02:00
\HEADER
\score {
\MUSIC
\layout { \generalLayout }
}
\TEXT
\score {
\unfoldRepeats \MUSIC
\midi {
\context {
\Score
% Tempo des midi files
tempoWholesPerMinute = #(ly:make-moment 90 4)
}
}
}
}
#}
)
\book {
\bookpart { \output }
}