]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/hiding-accidentals-on-tied-notes-at-the-start-of-a-new-system.ly
Allow open strings in chords regardless of finger positions
[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: 31097723b2b816696ad61696630a80ff17a39557
22   texidocfr = "
23 Cet exemple illustre comment, lorsqu'une note affublée d'une altération
24 accidentelle est prolongée, ne pas répéter cette altération après un
25 saut de ligne.
26
27 "
28   doctitlefr = "Non répétition de l'altération après saut de ligne sur liaison de prolongation"
29
30
31   lsrtags = "pitches"
32   texidoc = "This shows how to hide accidentals on tied notes at the beginning of a
33 new system."
34   doctitle = "Hiding accidentals on tied notes at the beginning of a new system"
35 } % begin verbatim
36
37
38 \relative c'' {
39   \override Accidental #'hide-tied-accidental-after-break = ##t
40   cis1~ cis~
41   \break
42   cis
43 }
44