]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adding-ambitus-per-voice.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / Documentation / snippets / adding-ambitus-per-voice.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.0"
8
9 \header {
10   lsrtags = "pitches, staff-notation, vocal-music"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
13   doctitlees = "Añadir un ámbito por voz"
14   texidoces = "
15 Se puede añadir un ámbito por cada voz. En este caso, el ámbito se
16 debe desplazar manualmente para evitar colisiones.
17
18 "
19
20 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
21 texidocde = "
22 Ambitus können pro Stimme gesetzt werden. In diesem Fall müssen sie
23 manuell verschoben werden, um Zusammenstöße zu verhindern.
24
25 "
26 doctitlede = "Ambitus pro Stimme hinzufügen"
27
28 %% Translation of GIT committish: 58a29969da425eaf424946f4119e601545fb7a7e
29   texidocfr = "
30 L'@code{ambitus} peut être individualisé par voix.  Il faut en pareil
31 cas éviter qu'ils se chevauchent.
32
33 "
34   doctitlefr = "Un ambitus par voix"
35
36
37   texidoc = "
38 Ambitus can be added per voice. In this case, the ambitus must be moved
39 manually to prevent collisions.
40
41 "
42   doctitle = "Adding ambitus per voice"
43 } % begin verbatim
44
45 \new Staff <<
46   \new Voice \with {
47     \consists "Ambitus_engraver"
48   } \relative c'' {
49     \override Ambitus #'X-offset = #2.0
50     \voiceOne
51     c4 a d e
52     f1
53   }
54   \new Voice \with {
55     \consists "Ambitus_engraver"
56   } \relative c' {
57     \voiceTwo
58     es4 f g as
59     b1
60   }
61 >>
62