]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/non-empty-text.ly
Merge branch 'master' into dev/texi2html
[lilypond.git] / input / regression / non-empty-text.ly
1
2 \version "2.11.51"
3
4 \header{
5   texidoc=" By default, text is set with empty horizontal dimensions.  
6 The boolean property @code{no-spacing-rods} in @code{TextScript} is used
7 to control the horizontal size of text.  " }
8
9 \layout {
10   line-width = 3.0\cm
11 }
12
13 \relative c''{
14   %% \textLengthOff
15   %% short for \override TextScript  #'no-spacing-rods = ##t
16   c2_"very wide and long text" c | \break
17   %% short for \override TextScript  #'no-spacing-rods = ##f
18   \textLengthOn
19   c_"very wide and long text" c
20 }
21
22