]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/non-empty-text.ly
Merge with master
[lilypond.git] / input / regression / non-empty-text.ly
1
2 \version "2.10.0"
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   %% \emptyText
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   \fatText
19   c_"very wide and long text" c
20 }
21
22