]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/aligning-lyrics.ly
Merge branch 'master' of ssh+git://hanwen@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / input / lsr / aligning-lyrics.ly
1 %% Do not edit this file; it is auto-generated from LSR!
2 %% Tags: text, vocal-music
3 \version "2.11.35"
4
5 \header { texidoc = "
6 You can specify different horizontal alignment for your lyrics, by
7 overriding the #'self-alignment-X property of the LyricText object. #-1
8 is left, #0 is center and #1 is right; however, you can use #LEFT,
9 #CENTER and #RIGHT as well.
10 " }
11 % begin verbatim
12 \relative c'' {
13 c1 c c}
14 \addlyrics {\once \override LyricText #'self-alignment-X = #LEFT "This is left-aligned" 
15 \once \override LyricText #'self-alignment-X = #CENTER "This is centered" 
16 \once \override LyricText #'self-alignment-X = #1 "this is right-aligned"  }