]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-appearance-of-a-slur-from-solid-to-dotted-or-dashed.ly
Change stringTunings from list of semitones to list of pitches
[lilypond.git] / Documentation / snippets / changing-the-appearance-of-a-slur-from-solid-to-dotted-or-dashed.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.39"
5
6 \header {
7   lsrtags = "expressive-marks, editorial-annotations"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
10   texidoces = "
11 Se puede cambiar el aspecto de las ligaduras de expresión de
12 continuas a punteadas o intermitentes.
13
14 "
15   doctitlees = "Modificar el aspecto continuo de una ligadura de expresión a punteado o intermitente"
16
17   texidoc = "
18 The appearance of slurs may be changed from solid to dotted or dashed.
19
20 "
21   doctitle = "Changing the appearance of a slur from solid to dotted or dashed"
22 } % begin verbatim
23
24 \relative c' {
25   c4( d e c)
26   \slurDotted
27   c4( d e c)
28   \slurSolid
29   c4( d e c)
30   \slurDashed
31   c4( d e c)
32   \slurSolid
33   c4( d e c)
34 }
35
36