]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/aligning-lyrics.ly
Merge commit 'ce4b499'
[lilypond.git] / input / lsr / aligning-lyrics.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.38"
4
5 \header {
6   lsrtags = "text, vocal-music"
7  texidoc = "
8 You can specify different horizontal alignment for your lyrics, by
9 overriding the #'self-alignment-X property of the LyricText object. #-1
10 is left, #0 is center and #1 is right; however, you can use #LEFT,
11 #CENTER and #RIGHT as well.
12 " }
13 % begin verbatim
14 \relative c'' {
15   c1 c c
16 }
17 \addlyrics {
18   \once \override LyricText #'self-alignment-X = #LEFT "This is left-aligned" 
19   \once \override LyricText #'self-alignment-X = #CENTER "This is centered" 
20   \once \override LyricText #'self-alignment-X = #1 "this is right-aligned"  
21 }