User:Lilipond/Lilypond/NtolenPunktiert/code1
Jump to navigation
Jump to search
\language "deutsch"
global = {
\key b \major
\time 4/4
}
rightOne = \relative c'' {
\global
g8..-5^\markup \italic "legato" ( a32-5
b8-5 a-5 g8..-5 a32-5 b8-5 a-5 )
}
rightTwo = \relative c' {
\tuplet 6/4 {
b16-2 c-1 cis-2 d-1 e-2 fis-3
}
\hide TupletNumber
\omit TupletBracket
\tuplet 6/4 {
g-4 f-3 es-2 d-1 cis-2 c-1
b-2 c cis d e fis-3 g-4 f es d-1 cis-2 c
}
}
left = \relative c' {
\key b \major
\stemDown
\repeat unfold 2 {
< g g, >16[-. r r16. d32 ]-.
g16[-. r < d fis>]-. r
}
}
\score {
\new PianoStaff \with {
instrumentName = ""
shortInstrumentName = ""
} <<
\new Staff = "right" <<
\new Voice { \voiceOne \rightOne }
\new Voice { \voiceTwo \rightTwo }
>>
\new Staff = "left" { \clef bass \left }
>>
\layout { }
}