]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/dot-count-override.ly
Doc-de: translating snippets and correcting German assignment
[lilypond.git] / Documentation / snippets / dot-count-override.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.26"
6 \header {
7   lsrtags = "rhythms,expressive-marks"
8   texidoc = "This code demonstrates how to change the number of
9 augmentation dots on a single note."
10   doctitle = "Changing the number of augmentation dots per note"
11 } % begin verbatim
12
13
14 \relative c' {
15   c4.. a16 r2 |
16   \override Dots #'dot-count = #4
17   c4.. a16 r2 |
18   \override Dots #'dot-count = #0
19   c4.. a16 r2 |
20   \revert Dots #'dot-count
21   c4.. a16 r2 |
22 }