]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/printing-marks-on-every-staff.ly
Merge commit 'origin' into beamlets2
[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.12.0"
4
5 \header {
6   lsrtags = "text"
7
8   texidoces = "
9 Aunque normalmente las marcas de texto sólo se imprimen sobre el
10 pentagrama superior, también se pueden imprimir en otro pentagrama
11 cualquiera.
12
13 "
14   doctitlees = "Imprimir marcas en cualquier pentagrama"
15
16   texidoc = "
17 Although text marks are normally only printed above the topmost staff,
18 they may also be printed on every staff.
19
20 "
21   doctitle = "Printing marks on every staff"
22 } % begin verbatim
23
24 \score {
25   <<
26     \new Staff { c''1 \mark "molto" c'' }
27     \new Staff { c'1 \mark "molto" c' }
28   >>
29   \layout {
30     \context {
31       \Score
32       \remove "Mark_engraver"
33       \remove "Staff_collecting_engraver"
34     }
35     \context {
36       \Staff
37       \consists "Mark_engraver"
38       \consists "Staff_collecting_engraver"
39     }
40   }
41 }