]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/changing-the-number-of-augmentation-dots-per-note.ly
Merge remote-tracking branch 'origin/master' into translation
[lilypond.git] / Documentation / snippets / changing-the-number-of-augmentation-dots-per-note.ly
index c4727d00b6c30321aeb732cdd8a2b1a7fdeda3cb..0719c560b1a62836e5c91dce7937397bb6bb91ad 100644 (file)
@@ -1,31 +1,28 @@
-% Do not edit this file; it is automatically
-% generated from Documentation/snippets/new
-% This file is in the public domain.
-%% Note: this file works from version 2.13.26
-\version "2.13.36"
+%% 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.17.6"
+
 \header {
-%% Translation of GIT committish: 190a067275167c6dc9dd0afef683d14d392b7033
+  lsrtags = "expressive-marks, rhythms"
 
-  texidocfr = "Voici comment modifier le nombre de points d'augmentation
-affectés à une note en particulier.
+  texidoc = "
+This code demonstrates how to change the number of augmentation dots on
+a single note.
 
 "
-  doctitlefr = "Spécification du nombre de points d'augmentation d'une note"
-
-
-  lsrtags = "rhythms,expressive-marks"
-  texidoc = "This code demonstrates how to change the number of
-augmentation dots on a single note."
   doctitle = "Changing the number of augmentation dots per note"
 } % begin verbatim
 
-
 \relative c' {
   c4.. a16 r2 |
-  \override Dots #'dot-count = #4
+  \override Dots.dot-count = #4
   c4.. a16 r2 |
-  \override Dots #'dot-count = #0
+  \override Dots.dot-count = #0
   c4.. a16 r2 |
-  \revert Dots #'dot-count
+  \revert Dots.dot-count
   c4.. a16 r2 |
 }