]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adding-an-extra-staff.ly
Merge branch 'translation' into staging
[lilypond.git] / Documentation / snippets / adding-an-extra-staff.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: 85394d425536d267ed0cb71d17023849f1611180
11   texidocfr = "
12 Vous pouvez ajouter une nouvelle portée, éventuellement de manière
13 temporaire, après le début d'un morceau.
14
15 "
16   doctitlefr = "Ajout d'une portée supplémentaire"
17
18
19   lsrtags = "contexts-and-engravers, staff-notation, really-simple"
20
21
22 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
23   texidoces = "
24 Se puede añadir (posiblemente de forma temporal) un pentagrama
25 nuevo una vez que la pieza ha comenzado.
26
27 "
28   doctitlees = "Añadir un pentagrama nuevo"
29
30   texidoc = "
31 An extra staff can be added (possibly temporarily) after the start of a
32 piece.
33
34 "
35   doctitle = "Adding an extra staff"
36 } % begin verbatim
37
38
39 \score {
40   <<
41     \new Staff \relative c'' {
42       c1 | c | c | c | c
43     }
44     \new StaffGroup \relative c'' {
45       \new Staff {
46         c1 | c
47         <<
48           {
49             c1 | d
50           }
51           \new Staff {
52             \once \override Staff.TimeSignature #'stencil = ##f
53             c1 | b
54           }
55         >>
56         c1
57       }
58     }
59   >>
60 }
61