]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/printing-music-with-different-time-signatures.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / Documentation / snippets / printing-music-with-different-time-signatures.ly
index 2bd69e4fea5570e1f9ec7ed389aaacea783b2db9..c00d9740261c196b01ab7aecaf5390652c220534 100644 (file)
@@ -1,30 +1,13 @@
 %% DO NOT EDIT this file manually; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
+%% generated from LSR http://lsr.di.unimi.it
 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.14.2"
+\version "2.18.0"
 
 \header {
-  lsrtags = "contemporary-notation, rhythms, real-music, percussion, really-cool"
-
-%% Translation of GIT committish: 28097cf54698db364afeb75658e4c8e0e0ccd716
-  texidocfr = "
-Bien qu'ayant des métriques bien différentes, les deux parties
-ci-dessous présentées restent synchrones.  Les barres de mesure ne
-peuvent plus être gérées au niveau du contexte @code{Score} ; les
-@code{Default_barline_engraver} et @code{Timing_translator} doivent être
-déplacés du contexte @code{Score} au contexte @code{Staff} afin de
-permettre des barres de mesure individualisées.
-
-Le @code{Bar_number_engraver} devra lui aussi être déplacé, puisqu'il
-dépend de propriétés attachées au @code{Timing_translator}, afin de
-numéroter les mesures.  L'utilisation d'un bloc @code{\\with} dans la
-portée concernée permettra un affichage des numéros de mesure.
-
-"
-  doctitlefr = "Impression de musique aux métriques différentes"
+  lsrtags = "contemporary-notation, percussion, real-music, really-cool, rhythms"
 
   texidoc = "
 In the following snippet, two parts have a completely different time
@@ -58,9 +41,9 @@ global = { \time 3/4 { s2.*3 } \bar "" \break { s2.*3 } }
     \remove "Timing_translator"
     \remove "Default_bar_line_engraver"
     \remove "Bar_number_engraver"
-    \override SpacingSpanner #'uniform-stretching = ##t
-    \override SpacingSpanner #'strict-note-spacing = ##t
-    proportionalNotationDuration = #(ly:make-moment 1 64)
+    \override SpacingSpanner.uniform-stretching = ##t
+    \override SpacingSpanner.strict-note-spacing = ##t
+    proportionalNotationDuration = #(ly:make-moment 1/64)
   }
   \context {
     \Staff
@@ -77,7 +60,7 @@ global = { \time 3/4 { s2.*3 } \bar "" \break { s2.*3 } }
 Bassklarinette = \new Staff \with {
   \consists "Bar_number_engraver"
   barNumberVisibility = #(every-nth-bar-number-visible 2)
-  \override BarNumber #'break-visibility = #end-of-line-invisible
+  \override BarNumber.break-visibility = #end-of-line-invisible
 } <<
   \global {
     \bar "|"
@@ -96,12 +79,12 @@ Bassklarinette = \new Staff \with {
     \bar "|"
     \time 2/4
     \tupletUp
-    \times 2/3 { ees''4 r4 d''4 ~ }
+    \tuplet 3/2 { ees''4 r4 d''4 ~ }
 
     \bar "|"
     \time 3/8
     \tupletUp
-    \times 3/4 { d''4 r4 }
+    \tuplet 4/3 { d''4 r4 }
 
     \bar "|"
     \time 2/4
@@ -173,4 +156,3 @@ Perkussion = \new StaffGroup <<
     \Perkussion
   >>
 }
-