]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/printing-hairpins-using-al-niente-notation.ly
Merge commit 'origin/master'
[lilypond.git] / Documentation / snippets / printing-hairpins-using-al-niente-notation.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.4"
5
6 \header {
7 %% Translation of GIT committish: ae814f45737bd1bdaf65b413a4c37f70b84313b7
8   texidocfr = "
9 Des crescendos ou decrescendos @emph{al niente} peuvent être indiqués de
10 manière graphique, en assignant @emph{vrai} (@code{#t}) à la
11 propriété @code{circled-tip}, ce qui affiche un cercle à leur extrémité.
12
13 "
14   doctitlefr = "Impression de soufflets « al niente »"
15
16
17   lsrtags = "expressive-marks"
18
19 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
20   texidoces = "
21 Se pueden imprimir reguladores con un círculo en la punta
22 (notación «al niente») estableciendo la propiedad
23 @code{circled-tip} del objeto @code{Hairpin} al valor @code{#t}.
24
25 "
26   doctitlees = "Impresión de reguladores utilizando la notación «al niente»"
27
28 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
29  texidocde = "
30  Crescendo-Klammern können mit einem kleinen Kreis vor der Spitze
31  notiert werden (al niente = bis zum Nichts), indem die
32 @code{circled-tip}-Eigenschaft des @code{Hairpin}-Objekts auf
33 @code{#t} gesetzt wird.
34
35 "
36   doctitlede = "Crescendo Klammern al niente schreiben"
37
38   texidoc = "
39 Hairpins may be printed with a circled tip (al niente notation) by
40 setting the @code{circled-tip} property of the @code{Hairpin} object to
41 @code{#t}.
42
43 "
44   doctitle = "Printing hairpins using al niente notation"
45 } % begin verbatim
46
47 \relative c'' {
48   \override Hairpin #'circled-tip = ##t
49   c2\< c\!
50   c4\> c\< c2\!
51 }
52