]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/hiding-accidentals-on-tied-notes-at-the-start-of-a-new-system.ly
81bcb5ff9c1ef91eff09c4c4146d8dd04b004ff5
[lilypond.git] / Documentation / snippets / hiding-accidentals-on-tied-notes-at-the-start-of-a-new-system.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"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
13
14   texidoces = "
15 Aquí se muestra la manera de ocultar las alteraciones de las notas
16 ligadas al comienzo de un sistema nuevo.
17
18 "
19
20   doctitlees = "Ocultar las alteraciones sobre notas ligadas al principio de un sistema nuevo"
21
22
23 %% Translation of GIT committish: bbf8fd2b5a3ebf20a1fdc91613dc49045a53a270
24   texidocit = "
25 Questo frammento mostra come nascondere le alterazioni delle note con
26 legatura di valore all'inizio di un nuovo sistema
27
28 "
29   doctitleit = "Nascondere le alterazioni delle note con legatura di valore
30   all'inizio di un nuovo sistema"
31
32 %% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
33   texidocfr = "
34 Cet exemple illustre comment, lorsqu'une note affublée d'une altération
35 accidentelle est prolongée, ne pas répéter cette altération après un
36 saut de ligne.
37
38 "
39   doctitlefr = "Non répétition de l'altération après saut de ligne sur liaison de prolongation"
40
41
42   texidoc = "
43 This shows how to hide accidentals on tied notes at the start of a new
44 system.
45
46 "
47   doctitle = "Hiding accidentals on tied notes at the start of a new system"
48 } % begin verbatim
49
50 \relative c'' {
51   \override Accidental #'hide-tied-accidental-after-break = ##t
52   cis1~ cis~
53   \break
54   cis
55 }