X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=sidebyside;f=input%2Flsr%2Fprinting-marks-on-every-staff.ly;h=b5a54da703e0c0d38d88b7e579120da06a94023c;hb=33fee1aae93af367e6d2f0a80bef3e1b38eda9eb;hp=468c1189fa52729f9d0da86200491f29a9d9105c;hpb=7a969ef322c1c0193d888e5bc080561ee43fe038;p=lilypond.git diff --git a/input/lsr/printing-marks-on-every-staff.ly b/input/lsr/printing-marks-on-every-staff.ly index 468c1189fa..b5a54da703 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.48" +\version "2.12.0" \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' } - >> + } }