Spaces:
Sleeping
Sleeping
File size: 935 Bytes
f65fe85 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
\version "2.20.0"
\header {
}
#(set-global-staff-size 28.5714285714)
\paper {
paper-width = 21.0\cm
paper-height = 29.7\cm
top-margin = 1.5\cm
bottom-margin = 1.5\cm
left-margin = 1.5\cm
right-margin = 1.5\cm
between-system-space = 2.3\cm
indent = 1.61538461538\cm
}
\layout {
\context { \Score
autoBeaming = ##f
}
}
PartPOneVoiceOne = \relative d' {
\clef "treble" \key c \major \time 4/4
| % 1
c c g' g a a g2 f4 f e e d d c2
\bar "|."
}
% The score definition
\score {
<<
\new Staff
<<
\context Staff <<
\mergeDifferentlyDottedOn\mergeDifferentlyHeadedOn
\context Voice = "PartPOneVoiceOne" { \PartPOneVoiceOne }
>>
>>
>>
\layout {}
% To create MIDI output, uncomment the following line:
%\midi {\tempo 4 = 100 }
}
|