]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-number-of-lines-in-a-staff.ly
Local updates from LSR
[lilypond.git] / Documentation / snippets / changing-the-number-of-lines-in-a-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: 1cda7b7b8219cb97399b8e7b56c1115aaf82c002
11   texidocfr = "
12 Le nombre de lignes d'un portée se modifie par adaptation de la
13 propriété @code{line-count} du @code{StaffSymbol}.
14
15 "
16   doctitlefr = "Modification du nombre de lignes de la portée"
17
18   lsrtags = "specific-notation, staff-notation"
19
20   texidoc = "
21 The number of lines in a staff may changed by overriding the
22 @code{StaffSymbol} property @code{line-count}.
23
24
25
26
27 "
28   doctitle = "Changing the number of lines in a staff"
29 } % begin verbatim
30
31
32 upper = \relative c'' {
33   c4 d e f
34 }
35
36 lower = \relative c {
37   \clef bass
38   c4 b a g
39 }
40
41 \score {
42   \context PianoStaff <<
43     \new Staff {
44       \upper
45     }
46     \new Staff {
47       \override Staff.StaffSymbol #'line-count = #4
48       \lower
49     }
50   >>
51 }
52