]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/quoting-another-voice.ly
Rerun scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / quoting-another-voice.ly
index d24db260d8270fb16e4949058aec59e62f8b5c8d..b83496137443d94decf2e74e1b7d96b8abd9715b 100644 (file)
@@ -1,38 +1,14 @@
-%% Do not edit this file; it is automatically
+%% DO NOT EDIT this file manually; it is automatically
 %% generated from LSR http://lsr.dsi.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.13.4"
+\version "2.17.6"
 
 \header {
   lsrtags = "staff-notation"
 
-%% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
-  texidoces = "
-La propiedad @code{quotedEventTypes} determina los tipos de
-eventos musicales que resultan citados.  El valor predeterminado
-es @code{(note-event rest-event)}, que significa que sólo aparecen
-en la expresión @code{\\quoteDuring} las notas y los silencios.
-En el ejemplo siguiente, el silencio de semicorchea no aparece en
-el fragmento citado porque @code{rest-event} no está dentro de los
-@code{quotedEventTypes}.
-
-"
-  doctitlees = "Citar otra voz"
-
-%% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
-  texidocde = "
-Die @code{quotedEventTypes}-Eigenschaft bestimmt die
-Typen an Musikereignissen, die zitiert werden.  Die
-Standardeinstellung ist @code{(note-event rest-event)}, womit
-nur Noten und Pausen der zitierten Stimme für den
-@code{\\quoteDuring}-Ausdruck übernommen werden.  Im
-Beispiel hier wird die 16-Pause nicht übernommen, weil
-sich @code{rest-event} nicht in @code{quotedEventTypes} befindet.
-
-"
-
-  doctitlede = "Eine andere Stimme zitieren"
-
   texidoc = "
 The @code{quotedEventTypes} property determines the music event types
 which should be quoted.  The default value is @code{(note-event
@@ -49,6 +25,7 @@ the Internals Reference.
   doctitle = "Quoting another voice"
 } % begin verbatim
 
+
 quoteMe = \relative c' {
   fis4 r16 a8.-> b4\ff c
 }
@@ -56,7 +33,7 @@ quoteMe = \relative c' {
 
 original = \relative c'' {
   c8 d s2
-  \once \override NoteColumn #'ignore-collision = ##t
+  \once \override NoteColumn.ignore-collision = ##t
   es8 gis8
 }
 
@@ -77,7 +54,7 @@ original = \relative c'' {
     \new Voice {
       s4
       \set fontSize = #-4
-      \override Stem #'length-fraction = #(magstep -4)
+      \override Stem.length-fraction = #(magstep -4)
       \quoteDuring #"quoteMe" { \skip 2. }
     }
   >>