\version "2.11.62" \include "italiano.ly" \header { title = "Tremolo" } tremoloA = \relative sib { % this works properly \times 2/3 {\repeat tremolo 6 {8} } \times 2/3 {\repeat tremolo 3 {8} } \times 2/3 {\repeat tremolo 3 {8} } } tremoloB = \relative sib { % this is in musical terms identical, but brings up wrong results \times 2/3 {\repeat tremolo 9 {8} } \times 2/3 {\repeat tremolo 3 {8} } } expected = \relative sib { % this, but with tremolo bars 2. 4 } countHelper = \relative sib { \repeat unfold 35 {\times 2/3{r16}} % helps counting the beats for tremolo 9 } \score { \new PianoStaff << \new Staff << \tremoloA >> \new Staff << \tremoloB >> \new Staff << \expected >> \new Staff << \countHelper >> >> }