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