blob: 99e7a20b4077b910a56aa919dff796a909296a92 (
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
55
56
57
58
59
60
61
62
|
\version "2.19.27"
\header {
= "Song 2"
= "The very pretentious elephlies"
= \markup { \char ##x00A9 "2002—2016 Ricardo Wurmus" }
}
\include "music/bass.ly"
\include "music/keys.ly"
\include "music/stick.ly"
\include "music/guitar.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 }
\new TabStaff = "acoustic guitar"
\with {
stringTunings = #guitar-tuning
\RemoveEmptyStaves
\tabFullNotation
instrumentName = #"Acoustic Guitar"
shortInstrumentName = #"Guitar"
} { \tabChordRepeats \guitar }
>>
AllMusicMIDI = #(if (string-null? (getenv "LILYPOND_USE_CHORDS"))
#{ \AllMusic #}
#{ \chordTrack #})
\include "../layouts.ly"
|