Hi,
I'm trying to get the root/intervals below tab aligned with notes.
R 4 3 2 3
Is it possible to do this from the root note, for notes in the current
bar? Or do I need to manually add the markup?
Would appreciate any help.
Nelly
\version "2.26.0"
\language "english"
\paper {
#(set-paper-size "a4landscape")
% Add space for instrument names
indent = 35\mm
short-indent = 35\mm
}
global = {
\key c \major
\time 4/4
\tempo 4=100
}
electricGuitar = \relative c' {
\global
c8, f e d e
}
\score {
\new StaffGroup \with {
systemStartDelimiter = #'SystemStartSquare
\consists "Instrument_name_engraver"
instrumentName = "Electric guitar"
shortInstrumentName = "Electric guitar"
} <<
\new Staff { \transposition c \transpose c c' \electricGuitar }
\new TabStaff \with {
stringTunings = #guitar-tuning
} \electricGuitar
>>
\layout { }
}