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