]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/printing-marks-on-every-staff.ly
Resolve conflict
[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   }
27   <<
28     \new Staff \with {
29       \consists "Mark_engraver"
30     }
31     { c''1 \mark "molto" c'' }
32     \new Staff \with {
33       \consists "Mark_engraver"
34     }
35     { c'1 \mark "molto" c' }
36   >>
37 }