]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/setting-the-minimum-length-of-hairpins.ly
Change stringTunings from list of semitones to list of pitches
[lilypond.git] / Documentation / snippets / setting-the-minimum-length-of-hairpins.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"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
10   texidoces = "
11 Si los reguladores son demasiado cortos, se pueden alargar
12 modificando la propiedad @code{minimum-length} del objeto
13 @code{Hairpin}.
14
15 "
16   doctitlees = "Ajustar la longitud mínima de los reguladores"
17
18
19 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
20 texidocde = "
21 Wenn Crescendo-Klammern zu kurz sind, können sie verlängert werden, indem
22 die @code{minimum-length}-Eigenschaft des @code{Hairpin}-Objektes
23 verändert wird.
24
25 "
26   doctitlede = "Die Mindestlänge von Crescendo-Klammern bestimmen"
27
28 %% Translation of GIT committish: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e
29   texidocfr = "
30 Si un soufflet est trop court, il suffit d'ajuster la propriété
31 @code{minimum-length} de l'objet @code{Hairpin} pour l'allonger.
32
33 "
34   doctitlefr = "Ajustement de la longueur d'un soufflet"
35
36
37   texidoc = "
38 If hairpins are too short, they can be lengthened by modifying the
39 @code{minimum-length} property of the @code{Hairpin} object.
40
41 "
42   doctitle = "Setting the minimum length of hairpins"
43 } % begin verbatim
44
45 \relative c'' {
46   c4\< c\! d\> e\!
47   \override Hairpin #'minimum-length = #5
48   << f1 { s4 s\< s\> s\! } >>
49 }
50