]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-number-of-augmentation-dots-per-note.ly
Merge branch 'master' into lilypond/translation
[lilypond.git] / Documentation / snippets / changing-the-number-of-augmentation-dots-per-note.ly
1 % Do not edit this file; it is automatically
2 % generated from Documentation/snippets/new
3 % This file is in the public domain.
4 %% Note: this file works from version 2.13.26
5 \version "2.13.29"
6 \header {
7 %% Translation of GIT committish: 190a067275167c6dc9dd0afef683d14d392b7033
8
9   texidocfr = "Voici comment modifier le nombre de points d'augmentation
10 affectés à une note en particulier.
11
12 "
13   doctitlefr = "Spécification du nombre de points d'augmentation d'une note"
14
15
16   lsrtags = "rhythms,expressive-marks"
17   texidoc = "This code demonstrates how to change the number of
18 augmentation dots on a single note."
19   doctitle = "Changing the number of augmentation dots per note"
20 } % begin verbatim
21
22
23 \relative c' {
24   c4.. a16 r2 |
25   \override Dots #'dot-count = #4
26   c4.. a16 r2 |
27   \override Dots #'dot-count = #0
28   c4.. a16 r2 |
29   \revert Dots #'dot-count
30   c4.. a16 r2 |
31 }