]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-breath-mark-symbol.ly
6bcac177726c7898591679e42e59156853e3b4a4
[lilypond.git] / Documentation / snippets / changing-the-breath-mark-symbol.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.2"
8
9 \header {
10   lsrtags = "expressive-marks"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
13   texidoces = "
14 El glifo de la marca de respiración se puede ajustar
15 sobreescribiendo la propiedad de texto del objeto de presentación
16 @code{BreathingSign}, con cualquier otro texto de marcado.
17
18 "
19   doctitlees = "Cambiar el símbolo de la marca de respiración"
20
21
22 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
23   texidocde = "
24 Das Schriftzeichen für das Atemzeichen kann verändert werden, indem
25 die Text-Eigenschaft des @code{BreathingSign}-Layoutobjekts mit einer
26 beliebigen Textbeschriftung definiert wird.
27
28 "
29   doctitlede = "Das Atemzeichen-Symbol verändern"
30
31 %% Translation of GIT committish: 217cd2b9de6e783f2a5c8a42be9c70a82195ad20
32   texidocfr = "
33 On peut choisir le glyphe imprimé par cette commande, en modifiant la
34 propriété @code{text} de l'objet @code{BreathingSign}, pour lui affecter
35 n'importe quelle indication textuelle.
36
37 "
38   doctitlefr = "Modification de l'indicateur de respiration"
39
40
41   texidoc = "
42 The glyph of the breath mark can be tuned by overriding the text
43 property of the @code{BreathingSign} layout object with any markup
44 text.
45
46 "
47   doctitle = "Changing the breath mark symbol"
48 } % begin verbatim
49
50
51 \relative c'' {
52   c2
53   \override BreathingSign #'text = \markup { \musicglyph #"scripts.rvarcomma" }
54   \breathe
55   d2
56 }