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