]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/non-empty-text.ly
Merge branch 'jneeman' of git+ssh://jneem@git.sv.gnu.org/srv/git/lilypond into jneeman
[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
10 \relative c''{
11   %% \emptyText
12   %% short for \override TextScript  #'no-spacing-rods = ##t
13   c2_"very wide and long text" c | \break
14   %% short for \override TextScript  #'no-spacing-rods = ##f
15   \fatText
16   c_"very wide and long text" c
17 }
18 \layout {
19   line-width = 3.0\cm
20 }
21
22