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