]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/printing-marks-on-every-staff.ly
Add '-dcrop' option to ps and svg backends
[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.di.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.18.0"
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 \score {
21   <<
22     \new Staff { c''1 \mark "molto" c'' }
23     \new Staff { c'1 \mark "molto" c' }
24   >>
25   \layout {
26     \context {
27       \Score
28       \remove "Mark_engraver"
29       \remove "Staff_collecting_engraver"
30     }
31     \context {
32       \Staff
33       \consists "Mark_engraver"
34       \consists "Staff_collecting_engraver"
35     }
36   }
37 }