]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/new/changing-the-number-of-augmentation-dots-per-note.ly
resolve merge
[lilypond.git] / Documentation / snippets / new / changing-the-number-of-augmentation-dots-per-note.ly
diff --git a/Documentation/snippets/new/changing-the-number-of-augmentation-dots-per-note.ly b/Documentation/snippets/new/changing-the-number-of-augmentation-dots-per-note.ly
new file mode 100644 (file)
index 0000000..8d7a6c1
--- /dev/null
@@ -0,0 +1,17 @@
+\version "2.14.0"
+\header {
+  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"
+}
+
+\relative c' {
+  c4.. a16 r2 |
+  \override Dots #'dot-count = #4
+  c4.. a16 r2 |
+  \override Dots #'dot-count = #0
+  c4.. a16 r2 |
+  \revert Dots #'dot-count
+  c4.. a16 r2 |
+}