]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adding-ambitus-per-voice.ly
LSR: Update.
[lilypond.git] / input / lsr / adding-ambitus-per-voice.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.62"
4
5 \header {
6   lsrtags = "pitches, staff-notation, vocal-music"
7
8   doctitlees = "Añadir un ámbito por voz"
9   texidoces = "
10 Se puede añadir un ámbito por cada voz. En este caso, el ámbito se
11 debe desplazar manualmente para evitar colisiones.
12
13 "
14
15 texidocde = "
16 Ambitus können pro Stimme gesetzt werden. In diesem Fall müssen sie
17 manual verschoben werden, um Zusammenstöße zu verhindern.
18
19 "
20 doctitlede = "Ambitus pro Stimme hinzufügen"
21
22   texidoc = "
23 Ambitus can be added per voice. In this case, the ambitus must be moved
24 manually to prevent collisions. 
25
26 "
27   doctitle = "Adding ambitus per voice"
28 } % begin verbatim
29 \new Staff <<
30   \new Voice \with {
31     \consists "Ambitus_engraver"
32   } \relative c'' {
33     \override Ambitus #'X-offset = #2.0
34     \voiceOne
35     c4 a d e
36     f1
37   }
38   \new Voice \with {
39     \consists "Ambitus_engraver"
40   } \relative c' {
41     \voiceTwo
42     es4 f g as
43     b1
44   }
45 >>