]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/printing-marks-on-every-staff.ly
Merge branch 'master' of git://git.sv.gnu.org/lilypond.git into td-lily
[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.38"
4
5 \header {
6   lsrtags = "text"
7  texidoc = "
8 Although text marks are normally only printed above the topmost staff,
9 they may also be printed on every staff.
10 " }
11 % begin verbatim
12 {
13   \new Score \with {
14     \remove "Mark_engraver"
15   }
16   <<
17     \new Staff \with {
18       \consists "Mark_engraver"
19     }
20     { c''1 \mark "molto" c'' }
21     \new Staff \with {
22       \consists "Mark_engraver"
23     }
24     { c'1 \mark "molto" c' }
25   >>
26 }