56 lines
817 B
Plaintext
56 lines
817 B
Plaintext
\version "2.18.0"
|
|
|
|
\include "../../lilypond-custom-includes/base_config.ly"
|
|
|
|
HEADER = \bookpart {
|
|
\header {
|
|
title = "Titel"
|
|
alttitle = "Liedanfang"
|
|
authors = #'(
|
|
("" ))
|
|
year_text = ""
|
|
year_melody = ""
|
|
infotext = ""
|
|
}
|
|
}
|
|
|
|
global = {
|
|
%Takt
|
|
\time 4/4
|
|
%Tonart
|
|
\key c \major
|
|
}
|
|
|
|
firstVerse = \lyricmode {
|
|
\set stanza = "1."
|
|
Lyrics
|
|
}
|
|
|
|
firstVoice = \relative c' {
|
|
\global
|
|
c
|
|
\bar "|."
|
|
}
|
|
|
|
MUSIC = {
|
|
<<
|
|
\chords {
|
|
c
|
|
}
|
|
\new ChoirStaff = "firstStaff"
|
|
<<
|
|
\new Voice = "firstVoice" { \firstVoice }
|
|
\addlyrics { \firstVerse }
|
|
>>
|
|
>>
|
|
}
|
|
|
|
TEXT = \markuplist {
|
|
\group-verses {
|
|
\chordverse #"2."
|
|
#"(Stro,a:m)phen(text,g)
|
|
(G,a:m)ras (ist,c) (grün,f)"
|
|
}
|
|
}
|
|
|
|
\include "../../lilypond-common-includes/standalone_output.ly" |