1\version "2.19.20"
2
3\header {
4  texidoc = "This shows the single and multi voice rest positions for
5various standard and tab staffs."
6}
7
8
9\layout {
10  ragged-right = ##t
11}
12
13mus = { \mark "R1*7" R1*7 \mark "R1" R1 \mark "r1" r1 \mark "r2" r2 \mark "r4" r4*2 }
14
15\score {
16  {
17    \compressMMRests
18    \new StaffGroup <<
19      $@(map
20         (lambda (n)
21           #{
22    	 \new Staff \with { \override StaffSymbol.line-count = $n }
23    	 { \mus << \mus \\ \mus >> }
24           #})
25         (iota 8))
26      $@(map
27          (lambda (x)
28            #{
29	      \new TabStaff \with { stringTunings = #x }
30	      { \mus << \mus \\ \mus >> }
31	    #})
32          (list mandolin-tuning banjo-c-tuning guitar-tuning))
33    >>
34  }
35  \layout { \tabFullNotation }
36}
37