]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/preventing-natural-signs-from-being-printed-when-the-key-signature-changes.ly
690660bc615dc016c1df5ab3f948d20f24117730
[lilypond.git] / Documentation / snippets / preventing-natural-signs-from-being-printed-when-the-key-signature-changes.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 = "automatic-notation, pitches"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
13 doctitlees = "Evitar que se impriman becuadros cuando cambia la armadura"
14
15 texidoces = "
16
17 Cuando cambia la armadura de la tonalidad, se imprimen becuadros
18 automáticamente para cancelar las alteraciones de las armaduras
19 anteriores.  Esto se puede evitar estableciendo al valor @qq{falso} la
20 propiedad @code{printKeyCancellation} del contexto @code{Staff}.
21
22 "
23
24
25 %% Translation of GIT committish: 6ae36b6f8a7cf2df5f4e46c3c06820fccd9f35e1
26   texidocit = "
27 Quando l'armatura di chiave cambia, vengono inseriti automaticamente i
28 segni di bequadro per annulare le alterazioni di precedenti armature.  Si
29 può evitare questo comportamento impostando su @code{f} (falso) la proprietà
30 @code{printKeyCancellation} nel contesto @code{Staff}.
31
32 "
33   doctitleit = "Impedire l'inserimento dei segni di bequadro quando cambia l'armatura di chiave"
34
35 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
36 doctitlede = "Auflösungzeichen nicht setzen wenn die Tonart wechselt"
37
38 texidocde = "
39 Wenn die Tonart wechselt, werden automatisch Auflösungszeichen ausgegeben,
40 um Versetzungszeichen der vorherigen Tonart aufzulösen.  Das kann
41 verhindert werden, indem die @code{printKeyCancellation}-Eigenschaft
42 im @code{Staff}-Kontext auf \"false\" gesetzt wird.
43 "
44
45 %% Translation of GIT committish: 28097cf54698db364afeb75658e4c8e0e0ccd716
46   texidocfr = "
47 Après un changement de tonalité, un bécarre est imprimé pour annuler
48 toute altération précédente.  Ce comportement s'annule en désactivant la
49 propriété @code{printKeyCancellation} du contexte @code{Staff}.
50
51 "
52   doctitlefr = "Suppression des bécarres superflus après un changement de tonalité"
53
54   texidoc = "
55 When the key signature changes, natural signs are automatically printed
56 to cancel any accidentals from previous key signatures.  This may be
57 prevented by setting to @code{f} the @code{printKeyCancellation}
58 property in the @code{Staff} context.
59
60 "
61   doctitle = "Preventing natural signs from being printed when the key signature changes"
62 } % begin verbatim
63
64
65 \relative c' {
66   \key d \major
67   a4 b cis d
68   \key g \minor
69   a4 bes c d
70   \set Staff.printKeyCancellation = ##f
71   \key d \major
72   a4 b cis d
73   \key g \minor
74   a4 bes c d
75 }
76