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