]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/ambitus.ly
Imported Upstream version 2.16.0
[lilypond.git] / Documentation / snippets / ambitus.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.16.0"
8
9 \header {
10   lsrtags = "pitches, vocal-music"
11
12   texidoc = "
13 Ambitus indicate pitch ranges for voices.
14
15
16 Accidentals only show up if they are not part of the key signature.
17 @code{AmbitusNoteHead} grobs also have ledger lines.
18
19 "
20   doctitle = "Ambitus"
21 } % begin verbatim
22
23
24 \layout {
25   \context {
26     \Voice
27     \consists "Ambitus_engraver"
28   }
29 }
30
31 <<
32   \new Staff {
33     \relative c' {
34       \time 2/4
35       c4 f'
36     }
37   }
38   \new Staff {
39     \relative c' {
40       \time  2/4
41       \key d \major
42       cis4 as'
43     }
44   }
45 >>