]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-number-of-augmentation-dots-per-note.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / changing-the-number-of-augmentation-dots-per-note.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.16.0"
8
9 \header {
10   lsrtags = "expressive-marks, rhythms"
11
12   texidoc = "
13 This code demonstrates how to change the number of augmentation dots on
14 a single note.
15
16 "
17   doctitle = "Changing the number of augmentation dots per note"
18 } % begin verbatim
19
20 \relative c' {
21   c4.. a16 r2 |
22   \override Dots #'dot-count = #4
23   c4.. a16 r2 |
24   \override Dots #'dot-count = #0
25   c4.. a16 r2 |
26   \revert Dots #'dot-count
27   c4.. a16 r2 |
28 }