]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/printing-marks-on-every-staff.ly
19af7d60f6eb21d6b15d194e25144978ed690127
[lilypond.git] / input / lsr / printing-marks-on-every-staff.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.57"
4
5 \header {
6   lsrtags = "text"
7
8   texidoc = "
9 Although text marks are normally only printed above the topmost staff,
10 they may also be printed on every staff.
11
12 "
13   doctitle = "Printing marks on every staff"
14 } % begin verbatim
15 {
16   \new Score \with {
17     \remove "Mark_engraver"
18   }
19   <<
20     \new Staff \with {
21       \consists "Mark_engraver"
22     }
23     { c''1 \mark "molto" c'' }
24     \new Staff \with {
25       \consists "Mark_engraver"
26     }
27     { c'1 \mark "molto" c' }
28   >>
29 }