Hallo Leute,
gesundes neues Jahr.
Ich habe folgendes script:
\version "2.12.0"
\header {
title = "Testsong"
}
\include "deutsch.ly"
#(set-global-staff-size 20)
upper = \relative c'' {
\clef treble
\key c \major
\time 3/4
c,4 g' g g c8 [c] c [c] c4 a a a2.
\bar "|."
}
lower = \relative c {
\clef bass
\key c \major
\time 3/4
<c e g>2. <c e g>2. <c f a>2. <c f a>2.
\bar "|."
}
textmitte = \lyricmode {
Tra- la Tra- la la la la la
}
harmonies = \new ChordNames \chordmode {
\germanChords
\set chordChanges = ##t
c2 c4 c2 c4 f2 f4 f2 f4
}
\score {
\new GrandStaff <<
\harmonies
\new Staff = upper {
\new Voice = "singer1" \upper
}
\new Lyrics \lyricsto "singer1" \textmitte
\new Staff = lower { \lower }
>>
\layout {
#(layout-set-staff-size 20)
\context {
\GrandStaff
\accepts "Lyrics"
\accepts "Chordnames"
}
\context {
\Lyrics
\consists "Bar_engraver"
}
}
\midi { }
}
\paper {}
Ich verstehe nicht, warum er die Akkordnamen UNTER dem Staff notiert, es steht doch noch
vor dem "\new Staff upper" oder geht dies nicht nach Reihenfolge?
Wie muss ich tun, damit es darüber geschrieben wird?
Viele Grüße,
Ingo