diff options
author | rekado <rekado@elephly.net> | 2016-04-26 20:25:38 +0200 |
---|---|---|
committer | rekado <rekado@elephly.net> | 2016-04-26 20:31:19 +0200 |
commit | 9d74940aceabc45345777327ee618b8228fc8f5b (patch) | |
tree | a9aaa5694270151bdfcee5ef246df51708cfbf76 /03-circus | |
parent | a6fe9b732b4bd8ec9a8f51c71ded52029d6142ec (diff) |
bass: Display both tablature and traditional notation.
Diffstat (limited to '03-circus')
-rw-r--r-- | 03-circus/parts/bass.ly | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/03-circus/parts/bass.ly b/03-circus/parts/bass.ly index 1716c19..2232faa 100644 --- a/03-circus/parts/bass.ly +++ b/03-circus/parts/bass.ly @@ -126,11 +126,7 @@ bassBeauty = \relative cis, { } } -bass = \new TabStaff \with { - stringTunings = #bass-five-string-tuning -} { - \override Stem #'transparent = ##t - \override Beam #'transparent = ##t +bassMusic = { \set Staff.midiInstrument = #"electric bass (finger)" \set Staff.pedalSustainStyle = #'bracket \clef "bass_8" @@ -170,3 +166,16 @@ bass = \new TabStaff \with { %% Arpeggio %% TODO } + +bass = << + \new Staff { + \bassMusic + } + \new TabStaff \with { + stringTunings = #bass-five-string-tuning + } { + \override Stem #'transparent = ##t + \override Beam #'transparent = ##t + \bassMusic + } +>> |