]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adding-an-extra-staff.ly
Change stringTunings from list of semitones to list of pitches
[lilypond.git] / Documentation / snippets / adding-an-extra-staff.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 = "staff-notation, contexts-and-engravers"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
10   texidoces = "
11 Se puede añadir (posiblemente de forma temporal) un pentagrama
12 nuevo una vez que la pieza ha comenzado.
13
14 "
15   doctitlees = "Añadir un pentagrama nuevo"
16
17   texidoc = "
18 An extra staff can be added (possibly temporarily) after the start of a
19 piece.
20
21 "
22   doctitle = "Adding an extra staff"
23 } % begin verbatim
24
25 \score {
26   <<
27     \new Staff \relative c'' {
28       c1 | c | c | c | c
29     }
30     \new StaffGroup \relative c'' {
31       \new Staff {
32         c1 | c
33         <<
34           {
35             c1 | d
36           }
37           \new Staff {
38             \once \override Staff.TimeSignature #'stencil = ##f
39             c1 | b
40           }
41         >>
42         c1
43       }
44     }
45   >>
46 }
47