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