]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/specifying-context-with-beatgrouping.ly
Imported Upstream version 2.14.2
[lilypond.git] / input / lsr / specifying-context-with-beatgrouping.ly
diff --git a/input/lsr/specifying-context-with-beatgrouping.ly b/input/lsr/specifying-context-with-beatgrouping.ly
deleted file mode 100644 (file)
index 8e074d5..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-%% 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.12.3"
-
-\header {
-  lsrtags = "rhythms, tweaks-and-overrides"
-
-  texidoces = "
-Mediante la especificación del contexto, el efecto de
-@code{beatGrouping} puede limitarse al contexto especificado, y
-sobreescribirse los valores establecidos en contextos de niveles más
-altos:
-
-"
-  doctitlees = "Especificar el contexto con beatGrouping"
-
-  texidoc = "
-By specifying the context, the effect of @code{beatGrouping} can be
-limited to the context specified, and the values which may have been
-set in higher-level contexts can be overridden.  The @code{\\set}
-commands must be placed after all @code{\\time} commands:
-
-"
-  doctitle = "Specifying context with beatGrouping"
-} % begin verbatim
-
-\score {
-  \new Staff <<
-    \time 7/8
-    \new Voice {
-      \relative c'' {
-        \set Staff.beatGrouping = #'(2 3 2)
-        a8 a a a a a a
-      }
-    }
-    \new Voice {
-      \relative c' {
-        \voiceTwo
-        \set beatGrouping = #'(1 3 3)
-        f8 f f f f f f
-      }
-    }
-  >>
-}