Files
solo-viool/Solo-Viool.ly
2026-01-25 15:42:40 +01:00

36 lines
627 B
Plaintext

\version "2.24.3"
\include "lilypond-hd/functions.ly"
\header {
title = "Solo Viool"
}
global = {
\key c \major
\time 4/4
}
violin = \relative c'' {
\global
% Muziek volgt hier.
\relative c' {
\rep 8 <f a>8 | \rep 4 <f d'> \rep 4 <f a> |
\rep 8 <f bf> | \rep 4 <f d'> \rep 4 <f bf> |
\rep 8 <g bf> | \rep 4 <g e'> \rep 2 <bf, g'> <g' e'> <g c>
\rep 8 <f e'> | <f e'> <f d'> <af, f'> <f' e'> <f e'>-> <f d'> <af,! f'> <f' e'> <e e'>2.
}
}
\score {
\new Staff \with {
instrumentName = "Viool"
midiInstrument = "violin"
} \violin
\layout { }
\midi {
\tempo 4=100
}
}