X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Frest-positioning.ly;fp=input%2Fregression%2Frest-positioning.ly;h=a34b773586981c0cb7e849a09277f231be4341ae;hb=0ac07f31e0f95fc18e5916ce756b9c746af7cc58;hp=0000000000000000000000000000000000000000;hpb=2f1263e2ccdddcac2eb9f7d8ce2ed92867d3d160;p=lilypond.git diff --git a/input/regression/rest-positioning.ly b/input/regression/rest-positioning.ly new file mode 100644 index 0000000000..a34b773586 --- /dev/null +++ b/input/regression/rest-positioning.ly @@ -0,0 +1,36 @@ +\version "2.17.16" + +\header { + texidoc = "This shows the single and multi voice rest positions for +various standard and tab staffs." +} + + +\layout { + ragged-right = ##t +} + +mus = { \mark "R1*7" R1*7 \mark "R1" R1 \mark "r1" r1 \mark "r2" r2 \mark "r4" r4*2 } + +\score { + { + \compressFullBarRests + \new StaffGroup << + $@(map + (lambda (n) + #{ + \new Staff \with { \override StaffSymbol.line-count = $n } + { \mus << \mus \\ \mus >> } + #}) + (iota 8)) + $@(map + (lambda (x) + #{ + \new TabStaff \with { stringTunings = #x } + { \mus << \mus \\ \mus >> } + #}) + (list mandolin-tuning banjo-c-tuning guitar-tuning)) + >> + } + \layout { \tabFullNotation } +}