diff options
author | rekado <rekado@elephly.net> | 2016-06-03 07:36:33 +0200 |
---|---|---|
committer | rekado <rekado@elephly.net> | 2016-06-03 07:36:33 +0200 |
commit | b3fc907b26d67ebf6f38973546c0ee3919d7451b (patch) | |
tree | 96dfd149e3937e99a23632873f29eb518dfcca53 /02-song2 | |
parent | 81ee381fa5982cf236ebf32ccaa1ae1eabba9181 (diff) |
song2: bass: Add instrument name, remove empty.
Diffstat (limited to '02-song2')
-rw-r--r-- | 02-song2/parts/bass.ly | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/02-song2/parts/bass.ly b/02-song2/parts/bass.ly index 51319e1..cd6de41 100644 --- a/02-song2/parts/bass.ly +++ b/02-song2/parts/bass.ly @@ -142,12 +142,25 @@ bassMusic = { \bassFinal } -bass = << - \new Staff { +\layout { + ragged-last = ##t + indent = 2\cm + short-indent = 1.5\cm +} + +bass = \new StaffGroup \with { + instrumentName = #"Bass" + shortInstrumentName = #"Bass" +} +<< + \new Staff \with { + \RemoveEmptyStaves + } { \bassMusic } \new TabStaff \with { stringTunings = #bass-five-string-tuning + \RemoveEmptyStaves } { \override Stem #'transparent = ##t \override Beam #'transparent = ##t |