]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-breath-mark-symbol.ly
Doc-de: updates from master to NR
[lilypond.git] / Documentation / snippets / changing-the-breath-mark-symbol.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 On peut choisir le glyphe imprimé par cette commande, en modifiant la
10 propriété @code{text} de l'objet @code{BreathingSign}, pour lui affecter
11 n'importe quelle indication textuelle.
12
13 "
14   doctitlefr = "Modification de l'indicateur de respiration"
15
16
17   lsrtags = "expressive-marks"
18
19 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
20   texidoces = "
21 El glifo de la marca de respiración se puede ajustar
22 sobreescribiendo la propiedad de texto del objeto de presentación
23 @code{BreathingSign}, con cualquier otro texto de marcado.
24
25 "
26   doctitlees = "Cambiar el símbolo de la marca de respiración"
27
28 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
29   texidocde = "
30 Das Schriftzeichen für das Atemzeichen kann verändert werden, indem
31 die Text-Eigenschaft des @code{BreathingSign}-Layoutobjekts mit einer
32 beliebigen Textbeschriftung definiert wird.
33
34 "
35   doctitlede = "Das Atemzeichen-Symbol verändern"
36
37   texidoc = "
38 The glyph of the breath mark can be tuned by overriding the text
39 property of the @code{BreathingSign} layout object with any markup
40 text.
41
42 "
43   doctitle = "Changing the breath mark symbol"
44 } % begin verbatim
45
46 \relative c'' {
47   c2
48   \override BreathingSign #'text = \markup { \musicglyph #"scripts.rvarcomma" }
49   \breathe
50   d2
51 }