diff options
author | rekado <rekado@elephly.net> | 2016-11-17 11:58:52 +0100 |
---|---|---|
committer | rekado <rekado@elephly.net> | 2016-11-17 11:58:52 +0100 |
commit | 17bec499f1a58ad917f176c17ea7cf773cbce23a (patch) | |
tree | d84188e99254f871745410665f57e13df9886133 /01-song1 | |
parent | 940e69de890a09a6ad39b4667374f5851c5357a9 (diff) |
song1: keys: Print note names.
Diffstat (limited to '01-song1')
-rw-r--r-- | 01-song1/01-song1.ly | 9 | ||||
-rw-r--r-- | 01-song1/music/keys.ly | 6 | ||||
-rw-r--r-- | 01-song1/parts/keys.ly | 17 |
3 files changed, 26 insertions, 6 deletions
diff --git a/01-song1/01-song1.ly b/01-song1/01-song1.ly index 0dba940..c6d6a42 100644 --- a/01-song1/01-song1.ly +++ b/01-song1/01-song1.ly @@ -26,7 +26,14 @@ AllMusic = << instrumentName = #"Synthesizer" shortInstrumentName = #"Synth" pedalSustainStyle = #'bracket - } { \keyboard } + } { + << + \new Staff { + \clef treble + \keyboard + } + >> + } \new StaffGroup = "bass" \with { instrumentName = #"Bass" diff --git a/01-song1/music/keys.ly b/01-song1/music/keys.ly index c991085..8a3c90a 100644 --- a/01-song1/music/keys.ly +++ b/01-song1/music/keys.ly @@ -151,8 +151,7 @@ keysEnd = \relative c { } -keyboard = << - \new Staff \relative c' { +keyboard = \relative c' { \tempo 4 = 90 \clef "treble_8" %% Intro @@ -179,5 +178,4 @@ keyboard = << \keysATransitionPreOutro \repeat volta 2 \keysOutro \keysEnd - } ->> +} diff --git a/01-song1/parts/keys.ly b/01-song1/parts/keys.ly index 77c2425..67b248d 100644 --- a/01-song1/parts/keys.ly +++ b/01-song1/parts/keys.ly @@ -12,7 +12,22 @@ \include "../music/keys.ly" \score { - \compressMMRests { \keyboard } + \new PianoStaff = "keyboard" \with { + pedalSustainStyle = #'bracket + } { + << + \new Staff { + << + \clef treble + \compressMMRests \keyboard + \context NoteNames = "upper" { + \set printOctaveNames = ##f + \compressMMRests \keyboard + } + >> + } + >> + } \layout { indent = #0 short-indent = #0 |