summaryrefslogtreecommitdiff
path: root/02-song2/parts/keys.ly
blob: c966ef8ccb76ad8a55cf727874cc82a1904e3c95 (about) (plain)
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
\version "2.19.27"

\header {
  title = "Song 2"
  subtitle = "Keyboard"
  composer = "The very pretentious elephlies"
  copyright = \markup { \char ##x00A9 "2002—2016 Ricardo Wurmus" }
}

\include "../../settings.ly"
\include "../music/keys.ly"

\score {
  \new PianoStaff = "keyboard" \with {
    pedalSustainStyle = #'bracket
  } {
    <<
      \new Staff {
        <<
          \tempo 4 = 90
          \clef treble
          \compressMMRests \keyboard
          \context NoteNames = "upper" {
            \set printOctaveNames = ##f
            \compressMMRests \keyboard
          }
        >>
      }
    >>
  }
  \layout {
    indent = #0
    short-indent = #0
    \context {
      \Score
      \numericTimeSignature
    }
  }
}