]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/skiptypesetting-tuplet.ly
Make the length of beamlets configurable.
[lilypond.git] / input / regression / skiptypesetting-tuplet.ly
1
2 \header{
3
4   texidoc = "Tuplet brackets are also skipped with
5 @code{skipTypesetting}."
6
7 }
8
9
10 \version "2.11.51"
11 \paper {
12   ragged-right = ##T
13 }
14
15 \new Staff \relative c' {
16   \set Score.skipTypesetting = ##t
17   \times 2/3 { c8 c c } \times 2/3 { c c c }
18   \times 2/3 { c c c } \times 2/3 { c c c}
19   \set Score.skipTypesetting = ##f
20   d1 \break
21   c
22 }