]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/preventing-extra-naturals-from-being-automatically-added.ly
Update to LSR with local copy
[lilypond.git] / Documentation / snippets / preventing-extra-naturals-from-being-automatically-added.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 Secondo le norme tipografiche standard, un segno di bequadro viene
13 inserito prima di un diesis o di un bemolle se un'alterazione
14 precedente sulla stessa nota deve essere cancellata.  Per cambiare
15 questo comportamento si imposta la proprietà @code{extraNatural} su
16 @code{f} (falso) nel contesto @code{Staff}.
17
18 "
19   doctitleit = "Impedire l'inserimento automatico dei bequadri supplementari"
20
21   lsrtags = "pitches"
22
23
24
25
26 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
27 doctitlees = "Evitar que se añadan becuadros adicionales automáticamente"
28
29 texidoces = "
30 Según las reglas estándar de composición
31 tipográfica, se imprime un becuadro antes de un sostenido o un
32 bemol cuando se tiene que cancelar una alteración anterior en la
33 misma nota.  Para modificar este comportamiento, establezca el
34 valor de la propiedad @code{extraNatural} a @code{##f} (falso)
35 dentro del contexto de @code{Staff}.
36
37 "
38
39
40 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
41   doctitlede = "Verhindern, dass zusätzliche Auflösungszeichen automatisch
42 hinzugefügt werden"
43
44 texidocde = "Den traditionellen Notensatzregeln zufolge wird ein
45 Auflösungszeichen immer dann vor einem Kreuz oder B gesetzt, wenn
46 ein vorheriges Versetzungszeichen der gleichen Note aufgehoben werden
47 soll.  Um dieses Verhalten zu ändern, muss die Eigenschaft
48 @code{extraNatural} im @code{Staff}-Kontext auf \"false\" gesetzt werden.
49 "
50
51 %% Translation of GIT committish: 58a29969da425eaf424946f4119e601545fb7a7e
52   texidocfr = "
53 En accord avec les règles standards de l'écriture musicale, on grave
54 un bécarre avant un dièse ou un bémol si on a besoin d'annuler une
55 altération précédente.  Pour modifier ce comportement, assignez la propriété
56 @code{extraNatural} du contexte @code{Staff} à la valeur @code{##f} (faux).
57 "
58
59   doctitlefr = "Suppression des bécarres superflus"
60
61   texidoc = "
62 In accordance with standard typesetting rules, a natural sign is
63 printed before a sharp or flat if a previous accidental on the same
64 note needs to be canceled.  To change this behavior, set the
65 @code{extraNatural} property to @code{f} in the @code{Staff} context.
66
67
68
69 "
70   doctitle = "Preventing extra naturals from being automatically added"
71 } % begin verbatim
72
73 \relative c'' {
74   aeses4 aes ais a
75   \set Staff.extraNatural = ##f
76   aeses4 aes ais a
77 }
78