]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/vertically-aligning-ossias-and-lyrics.ly
Rerun scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / vertically-aligning-ossias-and-lyrics.ly
index 15400cb6cbf7e31a2ab8ddf762239a36f9a4e3c5..dfbb0c8a503c38d41ad00cff9dcfd0f3dd960e6d 100644 (file)
@@ -4,39 +4,10 @@
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.14.0"
+\version "2.17.6"
 
 \header {
-  lsrtags = "vocal-music, tweaks-and-overrides, spacing"
-
-%% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
-  texidoces = "
-Este fragmento de código muestra el uso de las propiedades de
-contexto @code{alignBelowContext} y @code{alignAboveContext} para
-controlar la posición de la letra y los compases de ossia.
-
-"
-  doctitlees = "Alineación vertical de la letra y los compases de ossia"
-
-
-%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
-  texidocde = "
-Dieser Schnipsel zeigt, wie man die Kontexteigenschaften
-@code{alignBelowContext} und @code{alignAboveContext} benutzen kann, um
-die Positionierung von Gesangstext und Ossia-Abschnitten zu kontrollieren.
-
-"
-  doctitlede = "Gesangstext und Ossia vertikal ausrichten"
-
-%% Translation of GIT committish: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e
-  texidocfr = "
-Cet exemple illustre la manière de positionner une portée d'ossia et
-des paroles à l'aide des propriétés de contexte @code{alignBelowContext}
-et @code{alignAboveContext}.
-
-"
-  doctitlefr = "Positionnement d'une ossia et des paroles"
-
+  lsrtags = "spacing, tweaks-and-overrides, vocal-music"
 
   texidoc = "
 This snippet demonstrates the use of the context properties
@@ -47,6 +18,7 @@ positioning of lyrics and ossias.
   doctitle = "Vertically aligning ossias and lyrics"
 } % begin verbatim
 
+
 \paper {
   ragged-right = ##t
 }
@@ -64,15 +36,14 @@ positioning of lyrics and ossias.
       \new Staff \with {
         alignAboveContext = #"3"
         fontSize = #-2
-        \override StaffSymbol #'staff-space = #(magstep -2)
+        \override StaffSymbol.staff-space = #(magstep -2)
         \remove "Time_signature_engraver"
       } {
         \times 4/6 {
-          \override TextScript #'padding = #3
+          \override TextScript.padding = #3
           c8[^"ossia above" d e d e f]
         }
       }
     >>
   }
 >>
-