]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/printing-marks-on-every-staff.ly
lilypond-book robustness: ensure EOL at the end of @verbatim
[lilypond.git] / input / lsr / printing-marks-on-every-staff.ly
index 11a96e7e0f9ded8a8eba037fb00e61a77e0f87d5..4f90cdd9f7963dad1b6f3fa92a1d7af9337a7b32 100644 (file)
@@ -1,10 +1,27 @@
 %% 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.61"
+\version "2.13.1"
 
 \header {
   lsrtags = "text"
 
+%% Translation of GIT committish: e968d89055d045a29276db76970570f30ccc917e
+  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"
+
+%% Translation of GIT committish: 0364058d18eb91836302a567c18289209d6e9706
+  texidocde = "
+Normalerweise werden Textzeichen nur über dem obersten Notensystem gesetzt.  Sie
+können aber auch über jedem System ausgegeben werden.
+
+"
+  doctitlede = "Zeichen über jedem System ausgeben"
+
   texidoc = "
 Although text marks are normally only printed above the topmost staff,
 they may also be printed on every staff.
@@ -12,18 +29,23 @@ 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' }
-  >>
+  }
 }
+