X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Flyrics-alignment.ly;h=48d2a946110671375aa49b7ec70ae30c37052e18;hb=330a2873ed46f66d5abcefda22a633d1137cfb0e;hp=563e3f5577d41b95d32b3eecbabef4bc817dc8e4;hpb=1c122290caffd067b81c60a18c97e61d1c6b209e;p=lilypond.git diff --git a/Documentation/snippets/lyrics-alignment.ly b/Documentation/snippets/lyrics-alignment.ly index 563e3f5577..48d2a94611 100644 --- a/Documentation/snippets/lyrics-alignment.ly +++ b/Documentation/snippets/lyrics-alignment.ly @@ -1,24 +1,16 @@ -%% Do not edit this file; it is automatically -%% generated from LSR http://lsr.dsi.unimi.it +%% DO NOT EDIT this file manually; it is automatically +%% generated from LSR http://lsr.di.unimi.it +%% Make any changes in LSR itself, or in Documentation/snippets/new/ , +%% and then run scripts/auxiliar/makelsr.py +%% %% This file is in the public domain. -\version "2.13.20" +\version "2.18.0" \header { - lsrtags = "text, vocal-music" - -%% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b - texidoces = " -La alineación horizontal de la letra se puede ajustar sobreescribiendo -la propiedad @code{self-alignment-X} del objeto @code{LyricText}. -@code{#-1} es izquierda, @code{#0} es centrado y @code{#1} es derecha; -sin embargo, puede usar también @code{#LEFT}, @code{#CENTER} y -@code{#RIGHT}. - -" - doctitlees = "Alineación de la letra" + lsrtags = "really-simple, text, vocal-music" texidoc = " -Horizontal alignment for lyrics cam be set by overriding the +Horizontal alignment for lyrics can 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 @@ -35,11 +27,10 @@ well. c1 } \addlyrics { - \once \override LyricText #'self-alignment-X = #LEFT + \once \override LyricText.self-alignment-X = #LEFT "This is left-aligned" - \once \override LyricText #'self-alignment-X = #CENTER + \once \override LyricText.self-alignment-X = #CENTER "This is centered" - \once \override LyricText #'self-alignment-X = #1 + \once \override LyricText.self-alignment-X = #1 "This is right-aligned" } -