]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/preventing-natural-signs-from-being-printed-when-the-key-signature-changes.ly
Docs: run convert-ly for 2.14.0.
[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   lsrtags = "pitches"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
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: 0a868be38a775ecb1ef935b079000cebbc64de40
26 doctitlede = "Auflösungzeichen nicht setzen wenn die Tonart wechselt"
27
28 texidocde = "
29 Wenn die Tonart wechselt, werden automatisch Auflösungszeichen ausgegeben,
30 um Versetzungszeichen der vorherigen Tonart aufzulösen.  Das kann
31 verhindert werden, indem die @code{printKeyCancellation}-Eigenschaft
32 im @code{Staff}-Kontext auf \"false\" gesetzt wird.
33 "
34
35 %% Translation of GIT committish: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e
36   texidocfr = "
37 Après un changement de tonalité, un bécarre est imprimé pour annuler
38 toute altération précédente.  Ceci peut être supprimé en réglant à
39 @code{\"false\"} la propriété @code{printKeyCancellation} du contexte
40 @code{Staff}.
41
42 "
43
44   doctitlefr = "Suppression des bécarres superflus après un changement de
45 tonalité"
46
47   texidoc = "
48 When the key signature changes, natural signs are automatically printed
49 to cancel any accidentals from previous key signatures.  This may be
50 prevented by setting to @code{f} the @code{printKeyCancellation}
51 property in the @code{Staff} context.
52
53 "
54   doctitle = "Preventing natural signs from being printed when the key signature changes"
55 } % begin verbatim
56
57 \relative c' {
58   \key d \major
59   a4 b cis d
60   \key g \minor
61   a4 bes c d
62   \set Staff.printKeyCancellation = ##f
63   \key d \major
64   a4 b cis d
65   \key g \minor
66   a4 bes c d
67 }
68