Jump to content

Tablatures template

From LilyPond wiki

Here is a simple template for fretted strings instruments.

\version "2.24.0"

%% http://lsr.di.unimi.it/LSR/Item?id=634

upper= \relative c' {
  c4. g4 g  c
}

lower= \relative c {
  c4 e g, e'
}

\score {
  \new StaffGroup <<
    \new Staff = "guitar" <<
      \context Voice = "upper guitar" { \clef "G_8" \voiceOne \upper }
      \context Voice = "lower guitar" { \clef "G_8" \voiceTwo \lower }
    >>
    \new TabStaff = "tab" <<
      \context TabVoice = "upper tab" { \clef "moderntab" \voiceOne \upper }
      \context TabVoice = "lower tab" { \clef "moderntab" \voiceTwo \lower }
    >>
  >>
}