]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-number-of-augmentation-dots-per-note.ly
Fix white space
[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 Documentation/snippets/new
3 % Make any changes in Documentation/snippets/new/
4 % and then run scripts/auxiliar/makelsr.py
5 %
6 % This file is in the public domain.
7 %% Note: this file works from version 2.13.36
8 \version "2.14.0"
9 \header {
10 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
11
12   texidoces = "
13 Este código muestra cómo cambiar la cantidad de puntillos de una nota.
14
15 "
16
17   doctitlees = "Modificar el número de puntillos de una nota"
18
19
20 %% Translation of GIT committish: 190a067275167c6dc9dd0afef683d14d392b7033
21
22   texidocfr = "Voici comment modifier le nombre de points d'augmentation
23 affectés à une note en particulier.
24
25 "
26   doctitlefr = "Spécification du nombre de points d'augmentation d'une note"
27
28
29   lsrtags = "rhythms,expressive-marks"
30   texidoc = "This code demonstrates how to change the number of
31 augmentation dots on a single note."
32   doctitle = "Changing the number of augmentation dots per note"
33 } % begin verbatim
34
35
36 \relative c' {
37   c4.. a16 r2 |
38   \override Dots #'dot-count = #4
39   c4.. a16 r2 |
40   \override Dots #'dot-count = #0
41   c4.. a16 r2 |
42   \revert Dots #'dot-count
43   c4.. a16 r2 |
44 }