]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/vertically-aligning-ossias-and-lyrics.ly
c2c8c9022054126bd4c3566383b856c97e425e3c
[lilypond.git] / Documentation / snippets / vertically-aligning-ossias-and-lyrics.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.16"
5
6 \header {
7   lsrtags = "vocal-music, tweaks-and-overrides, spacing"
8
9 %% Translation of GIT committish: 2b0dc29608d6c3f5a03ead4877ae514c647adb74
10   texidoces = "
11 Este fragmento de código muestra el uso de las propiedades de
12 contexto @code{alignBelowContext} y @code{alignAboveContext} para
13 controlar la posición de la letra y los compases de ossia.
14
15 "
16   doctitlees = "Alineación vertical de la letra y los compases de ossia"
17
18 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
19   texidocde = "
20 Dieser Schnipsel zeigt, wie man die Kontexteigenschaften
21 @code{alignBelowContext} und @code{alignAboveContext} benutzen kann, um
22 die Positionierung von Gesangstext und Ossia-Abschnitten zu kontrollieren.
23
24 "
25   doctitlede = "Gesangstext und Ossia vertikal ausrichten"
26 %% Translation of GIT committish: 99dc90bbc369722cf4d3bb9f30b7288762f2167f6
27   texidocfr = "
28 Cet exemple illustre la manière de positionner une portée d'ossia et
29 des paroles à l'aide des propriétés de contexte @code{alignBelowContext}
30 et @code{alignAboveContext}.  
31
32 "
33   doctitlefr = "Positionnement d'une ossia et des paroles"
34
35
36   texidoc = "
37 This snippet demonstrates the use of the context properties
38 @code{alignBelowContext} and @code{alignAboveContext} to control the
39 positioning of lyrics and ossias.
40
41 "
42   doctitle = "Vertically aligning ossias and lyrics"
43 } % begin verbatim
44
45 \paper {
46   ragged-right = ##t
47 }
48
49 \relative c' <<
50   \new Staff = "1" { c4 c s2 }
51   \new Staff = "2" { c4 c s2 }
52   \new Staff = "3" { c4 c s2 }
53   { \skip 2
54     <<
55       \lyrics {
56         \set alignBelowContext = #"1"
57         lyrics4 below
58       }
59       \new Staff \with {
60         alignAboveContext = #"3"
61         fontSize = #-2
62         \override StaffSymbol #'staff-space = #(magstep -2)
63         \remove "Time_signature_engraver"
64       } {
65         \times 4/6 {
66           \override TextScript #'padding = #3
67           c8[^"ossia above" d e d e f]
68         }
69       }
70     >>
71   }
72 >>
73