]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-number-of-augmentation-dots-per-note.ly
05717c441512c9a28d70608d8b75b22a4e7c9045
[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.14.2"
8
9 \header {
10   lsrtags = "rhythms, expressive-marks"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
13
14   texidoces = "
15 Este código muestra cómo cambiar la cantidad de puntillos de una nota.
16
17 "
18
19   doctitlees = "Modificar el número de puntillos de una nota"
20
21
22 %% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
23   texidocfr = "
24 Voici comment modifier le nombre de points d'augmentation
25 affectés à une note en particulier.
26
27 "
28   doctitlefr = "Spécification du nombre de points d'augmentation d'une note"
29
30
31   texidoc = "
32 This code demonstrates how to change the number of augmentation dots on
33 a single note.
34
35 "
36   doctitle = "Changing the number of augmentation dots per note"
37 } % begin verbatim
38
39 \relative c' {
40   c4.. a16 r2 |
41   \override Dots #'dot-count = #4
42   c4.. a16 r2 |
43   \override Dots #'dot-count = #0
44   c4.. a16 r2 |
45   \revert Dots #'dot-count
46   c4.. a16 r2 |
47 }