]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/aligning-lyrics.ly
LSR: Update.
[lilypond.git] / input / lsr / aligning-lyrics.ly
index 677bbba44095fceed2f0cf8f74434fd52b9f66f0..e04eab7c40d5e2bf2f398e256ac822f97412afd8 100644 (file)
@@ -1,22 +1,31 @@
 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
 %% This file is in the public domain.
-\version "2.11.38"
+\version "2.11.52"
 
 \header {
   lsrtags = "text, vocal-music"
- texidoc = "
-You can specify different horizontal alignment for your lyrics, by
-overriding the @code{self-alignment-X} property of the @code{LyricText}
-object. @code{#-1} is left, @code{#0} is center and @code{#1} is right;
+
+  texidoc = "
+Horizontal alignment for lyrics cam be set by overriding the
+@code{self-alignment-X} property of the @code{LyricText} object.
+@code{#-1} is left, @code{#0} is center and @code{#1} is right;
 however, you can use @code{#LEFT}, @code{#CENTER} and @code{#RIGHT} as
 well. 
-" }
-% begin verbatim
+
+"
+  doctitle = "Aligning lyrics"
+} % begin verbatim
+\layout { ragged-right = ##f }
 \relative c'' {
-  c1 c c
+  c1
+  c1
+  c1
 }
 \addlyrics {
-  \once \override LyricText #'self-alignment-X = #LEFT "This is left-aligned" 
-  \once \override LyricText #'self-alignment-X = #CENTER "This is centered" 
-  \once \override LyricText #'self-alignment-X = #1 "This is right-aligned"  
+  \once \override LyricText #'self-alignment-X = #LEFT
+  "This is left-aligned"
+  \once \override LyricText #'self-alignment-X = #CENTER
+  "This is centered" 
+  \once \override LyricText #'self-alignment-X = #1
+  "This is right-aligned"
 }