summaryrefslogtreecommitdiff
path: root/01-song1/01-song1.ly
blob: c1157339092b8cbbfdce88c66d420b050de69c28 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
\version "2.19.27"

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

\include "music/common.ly"
\include "music/bass.ly"
\include "music/keys.ly"
\include "music/stick.ly"
\include "music/click.ly"
\include "music/chords.ly"

\layout {
  ragged-last = ##t
  indent = 2\cm
  short-indent = 1.5\cm
}

AllMusic = <<
  \new PianoStaff = "keyboard"
  \with {
    instrumentName = #"Synthesizer"
    shortInstrumentName = #"Synth"
    pedalSustainStyle = #'bracket
  } {
    <<
      \new Staff {
        \clef treble
        \keyboard
      }
    >>
  }
  \new StaffGroup = "bass"
  \with {
    instrumentName = #"Bass"
    shortInstrumentName = #"Bass"
  } { \bass }
  \new PianoStaff = "grand stick"
  \with {
    instrumentName = #"Grand Stick"
    shortInstrumentName = #"Stick"
    midiInstrument = #"clav"
    pedalSustainStyle = #'bracket
  } { \stick }
>>

AllMusicMIDI = #(if (string-null? (getenv "LILYPOND_USE_CHORDS"))
                 #{ \AllMusic #}
                 #{ \chordTrack #})

\include "../layouts.ly"