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