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