]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adding-ambitus-per-voice.ly
750fd81f93dc70adf710a430d50f6e31543e6792
[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.2"
8
9 \header {
10   lsrtags = "pitches, staff-notation, vocal-music"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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: 6ae36b6f8a7cf2df5f4e46c3c06820fccd9f35e1
21   texidocit = "
22 L'ambitus può essere specificato per voce. In tal caso occorre
23 spostarlo manualmente per evitare collisioni.
24
25 "
26   doctitleit = "Un ambitus per voce"
27
28 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
29 texidocde = "
30 Ambitus können pro Stimme gesetzt werden. In diesem Fall müssen sie
31 manuell verschoben werden, um Zusammenstöße zu verhindern.
32
33 "
34 doctitlede = "Ambitus pro Stimme hinzufügen"
35
36 %% Translation of GIT committish: 58a29969da425eaf424946f4119e601545fb7a7e
37   texidocfr = "
38 L'@code{ambitus} peut être individualisé par voix.  Il faut en pareil
39 cas éviter qu'ils se chevauchent.
40
41 "
42   doctitlefr = "Un ambitus par voix"
43
44
45   texidoc = "
46 Ambitus can be added per voice. In this case, the ambitus must be moved
47 manually to prevent collisions.
48
49 "
50   doctitle = "Adding ambitus per voice"
51 } % begin verbatim
52
53
54 \new Staff <<
55   \new Voice \with {
56     \consists "Ambitus_engraver"
57   } \relative c'' {
58     \override Ambitus #'X-offset = #2.0
59     \voiceOne
60     c4 a d e
61     f1
62   }
63   \new Voice \with {
64     \consists "Ambitus_engraver"
65   } \relative c' {
66     \voiceTwo
67     es4 f g as
68     b1
69   }
70 >>
71