X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Flsr%2Fprinting-marks-on-every-staff.ly;h=c774a721ffa2745ac1bc63e0e1010fdba9dc5006;hb=4d39723f369559b37ca570ebbd029eaab3730a32;hp=e55d6c7991a7f45bad74c2a780a88f156837e098;hpb=ae5cf53569c95d0e35e98a7abd292c4f8a82b528;p=lilypond.git diff --git a/input/lsr/printing-marks-on-every-staff.ly b/input/lsr/printing-marks-on-every-staff.ly index e55d6c7991..c774a721ff 100644 --- a/input/lsr/printing-marks-on-every-staff.ly +++ b/input/lsr/printing-marks-on-every-staff.ly @@ -1,10 +1,18 @@ %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it %% This file is in the public domain. -\version "2.11.55" +\version "2.11.62" \header { lsrtags = "text" + texidoces = " +Aunque normalmente las marcas de texto sólo se imprimen sobre el +pentagrama superior, también se pueden imprimir en otro pentagrama +cualquiera. + +" + doctitlees = "Imprimir marcas en cualquier pentagrama" + texidoc = " Although text marks are normally only printed above the topmost staff, they may also be printed on every staff. @@ -12,18 +20,22 @@ they may also be printed on every staff. " doctitle = "Printing marks on every staff" } % begin verbatim -{ - \new Score \with { - \remove "Mark_engraver" - } + +\score { << - \new Staff \with { - \consists "Mark_engraver" + \new Staff { c''1 \mark "molto" c'' } + \new Staff { c'1 \mark "molto" c' } + >> + \layout { + \context { + \Score + \remove "Mark_engraver" + \remove "Staff_collecting_engraver" } - { c''1 \mark "molto" c'' } - \new Staff \with { + \context { + \Staff \consists "Mark_engraver" + \consists "Staff_collecting_engraver" } - { c'1 \mark "molto" c' } - >> + } }