53 lines
775 B
Plaintext
53 lines
775 B
Plaintext
\version "2.18.0"
|
|
|
|
\include "../../lilypond-custom-includes/base_config.ly"
|
|
|
|
HEADER = \bookpart {
|
|
\header {
|
|
title = "Titel"
|
|
songId = "a-song-id"
|
|
categories = ""
|
|
songinfo = "wasauchimmer"
|
|
}
|
|
}
|
|
|
|
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" |