]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/preventing-natural-signs-from-being-printed-when-the-key-signature-changes.ly
Doc: run makelsr locally
[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 = "pitches, automatic-notation"
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: bbf8fd2b5a3ebf20a1fdc91613dc49045a53a270
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: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
46   texidocfr = "
47 Après un changement de tonalité, un bécarre est imprimé pour annuler
48 toute altération précédente.  Ceci peut être supprimé en réglant à
49 @code{\"false\"} la propriété @code{printKeyCancellation} du contexte
50 @code{Staff}.
51
52 "
53   doctitlefr = "Suppression des bécarres superflus après un changement de tonalité"
54
55   texidoc = "
56 When the key signature changes, natural signs are automatically printed
57 to cancel any accidentals from previous key signatures.  This may be
58 prevented by setting to @code{f} the @code{printKeyCancellation}
59 property in the @code{Staff} context.
60
61 "
62   doctitle = "Preventing natural signs from being printed when the key signature changes"
63 } % begin verbatim
64
65
66 \relative c' {
67   \key d \major
68   a4 b cis d
69   \key g \minor
70   a4 bes c d
71   \set Staff.printKeyCancellation = ##f
72   \key d \major
73   a4 b cis d
74   \key g \minor
75   a4 bes c d
76 }
77