]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/ambitus.ly
Merge branch 'translation' into staging
[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.14.2"
8
9 \header {
10 %% Translation of GIT committish: 1cda7b7b8219cb97399b8e7b56c1115aaf82c002
11   texidocfr = "
12 Un @emph{ambitus} indique la tessiture, autrement dit les hauteurs
13 extrêmes d'une voix.
14
15 Seules seront affichées les altérations non comprises dans l'armure.
16 Les objets @code{AmbitusNoteHead} peuvent avoir des lignes
17 supplémentaires.
18
19 "
20   doctitlefr = "Ambitus"
21
22   lsrtags = "vocal-music, pitches"
23
24   texidoc = "
25 Ambitus indicate pitch ranges for voices.
26
27
28 Accidentals only show up if they are not part of the key signature.
29 @code{AmbitusNoteHead} grobs also have ledger lines.
30
31 "
32   doctitle = "Ambitus"
33 } % begin verbatim
34
35
36 \layout {
37   \context {
38     \Voice
39     \consists "Ambitus_engraver"
40   }
41 }
42
43 <<
44   \new Staff {
45     \relative c' {
46       \time 2/4
47       c4 f'
48     }
49   }
50   \new Staff {
51     \relative c' {
52       \time  2/4
53       \key d \major
54       cis4 as'
55     }
56   }
57 >>
58