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