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