]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/printing-marks-on-every-staff.ly
Merge master into nested-bookparts
[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.62"
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   \new Score \with {
25     \remove "Mark_engraver"
26     \remove "Staff_collecting_engraver"
27   }
28   <<
29     \new Staff \with {
30       \consists "Mark_engraver"
31       \consists "Staff_collecting_engraver"
32     }
33     { c''1 \mark "molto" c'' }
34     \new Staff \with {
35       \consists "Mark_engraver"
36       \consists "Staff_collecting_engraver"
37     }
38     { c'1 \mark "molto" c' }
39   >>
40 }