]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/lyrics-alignment.ly
Merge master into nested-bookparts
[lilypond.git] / input / lsr / lyrics-alignment.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.62"
4
5 \header {
6   lsrtags = "text, vocal-music"
7
8   texidoces = "
9 La alineación horizontal de la letra se puede ajustar sobreescribiendo
10 la propiedad @code{self-alignment-X} del objeto @code{LyricText}.
11 @code{#-1} es izquierda, @code{#0} es centrado y @code{#1} es derecha;
12 sin embargo, puede usar también @code{#LEFT}, @code{#CENTER} y
13 @code{#RIGHT}.
14
15 "
16   doctitlees = "Alineación de la letra"
17
18   texidoc = "
19 Horizontal alignment for lyrics cam be set by overriding the
20 @code{self-alignment-X} property of the @code{LyricText} object.
21 @code{#-1} is left, @code{#0} is center and @code{#1} is right;
22 however, you can use @code{#LEFT}, @code{#CENTER} and @code{#RIGHT} as
23 well. 
24
25 "
26   doctitle = "Lyrics alignment"
27 } % begin verbatim
28 \layout { ragged-right = ##f }
29 \relative c'' {
30   c1
31   c1
32   c1
33 }
34 \addlyrics {
35   \once \override LyricText #'self-alignment-X = #LEFT
36   "This is left-aligned"
37   \once \override LyricText #'self-alignment-X = #CENTER
38   "This is centered" 
39   \once \override LyricText #'self-alignment-X = #1
40   "This is right-aligned"
41 }