]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/changing-the-number-of-augmentation-dots-per-note.ly
Doc: CSS: A better brown for the usage manual
[lilypond.git] / Documentation / snippets / changing-the-number-of-augmentation-dots-per-note.ly
index 7d5703d6ad17e00411b9b199bea5842d52e693a9..422a855169660aa427e5e5a1ef7e4e6ba0159b10 100644 (file)
@@ -1,22 +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.29"
+%% DO NOT EDIT this file manually; it is automatically
+%% 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.18.0"
+
 \header {
-  lsrtags = "rhythms,expressive-marks"
-  texidoc = "This code demonstrates how to change the number of
-augmentation dots on a single note."
+  lsrtags = "expressive-marks, rhythms"
+
+  texidoc = "
+The number of augmentation dots on a single note can be changed
+indepently of the dots placed after the 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 |
 }