1\version "2.19.21"
2
3\header {
4  texidoc = "
5Context property @code{defaultStrings} defines desired strings
6for fret calculations if no strings are defined explicitly.
7"
8}
9
10mymusic = \relative {
11  <c c'>4
12  \set defaultStrings = #'(5 3)
13  <c c'>4
14  <d d'>4
15  <e e'>4
16  <c c'>2\6\4
17  \unset defaultStrings
18  <c c'>2
19}
20
21\score {
22  <<
23    \new Staff {
24      \clef "treble_8"
25      \mymusic
26    }
27    \new TabStaff {
28      \mymusic
29    }
30  >>
31}
32