]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adding-ambitus-per-voice.ly
Merge branch 'translation' into staging
[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.17.6"
8
9 \header {
10   lsrtags = "pitches, staff-notation, vocal-music"
11
12   texidoc = "
13 Ambitus can be added per voice. In this case, the ambitus must be moved
14 manually to prevent collisions.
15
16 "
17   doctitle = "Adding ambitus per voice"
18 } % begin verbatim
19
20
21 \new Staff <<
22   \new Voice \with {
23     \consists "Ambitus_engraver"
24   } \relative c'' {
25     \override Ambitus.X-offset = #2.0
26     \voiceOne
27     c4 a d e
28     f1
29   }
30   \new Voice \with {
31     \consists "Ambitus_engraver"
32   } \relative c' {
33     \voiceTwo
34     es4 f g as
35     b1
36   }
37 >>