]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/preventing-natural-signs-from-being-printed-when-the-key-signature-changes.ly
Doc: update snippet committishes.
[lilypond.git] / Documentation / snippets / preventing-natural-signs-from-being-printed-when-the-key-signature-changes.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.10"
5
6 \header {
7   lsrtags = "pitches"
8
9 %% Translation of GIT committish: 45fc8488655f9ea122d1ec6e3328892618bd6971
10 doctitlees = "Evitar que se impriman becuadros cuando cambia la armadura"
11
12 texidoces = "
13
14 Cuando cambia la armadura de la tonalidad, se imprimen becuadros
15 automáticamente para cancelar las alteraciones de las armaduras
16 anteriores.  Esto se puede evitar estableciendo al valor @qq{falso} la
17 propiedad @code{printKeyCancellation} del contexto @code{Staff}.
18
19 "
20
21 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
22 doctitlede = "Auflösungzeichen nicht setzen wenn die Tonart wechselt"
23
24 texidocde = "
25 Wenn die Tonart wechselt, werden automatisch Auflösungszeichen ausgegeben,
26 um Versetzungszeichen der vorherigen Tonart aufzulösen.  Das kann
27 verhindert werden, indem die @code{printKeyCancellation}-Eigenschaft
28 im @code{Staff}-Kontext auf \"false\" gesetzt wird.
29 "
30 %% Translation of GIT committish: 59968a089729d7400f8ece38d5bc98dbb3656a2b
31   texidocfr = "
32 Après un changement de tonalité, un bécarre est imprimé pour annuler
33 toute altération précédente.  Ceci peut être supprimé en réglant à
34 @code{\"false\"} la propriété @code{printKeyCancellation} du contexte
35 @code{Staff}. 
36
37 "
38
39   doctitlefr = "Suppression des bécarres superflus après un changement de
40 tonalité"
41
42   texidoc = "
43 When the key signature changes, natural signs are automatically printed
44 to cancel any accidentals from previous key signatures.  This may be
45 prevented by setting to @code{f} the @code{printKeyCancellation}
46 property in the @code{Staff} context.
47
48 "
49   doctitle = "Preventing natural signs from being printed when the key signature changes"
50 } % begin verbatim
51
52 \relative c' {
53   \key d \major
54   a4 b cis d
55   \key g \minor
56   a4 bes c d
57   \set Staff.printKeyCancellation = ##f
58   \key d \major
59   a4 b cis d
60   \key g \minor
61   a4 bes c d
62 }
63