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