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