]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/printing-marks-on-every-staff.ly
Update snippets from today's LSR with changed makelsr.py
[lilypond.git] / Documentation / snippets / printing-marks-on-every-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 = "text"
11
12   texidoc = "
13 Although text marks are normally only printed above the topmost staff,
14 they may also be printed on every staff.
15
16 "
17   doctitle = "Printing marks on every staff"
18 } % begin verbatim
19
20
21 \score {
22   <<
23     \new Staff { c''1 \mark "molto" c'' }
24     \new Staff { c'1 \mark "molto" c' }
25   >>
26   \layout {
27     \context {
28       \Score
29       \remove "Mark_engraver"
30       \remove "Staff_collecting_engraver"
31     }
32     \context {
33       \Staff
34       \consists "Mark_engraver"
35       \consists "Staff_collecting_engraver"
36     }
37   }
38 }