]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/hiding-accidentals-on-tied-notes-at-the-start-of-a-new-system.ly
Change stringTunings from list of semitones to list of pitches
[lilypond.git] / Documentation / snippets / hiding-accidentals-on-tied-notes-at-the-start-of-a-new-system.ly
1 % Do not edit this file; it is automatically
2 % generated from Documentation/snippets/new
3 % This file is in the public domain.
4 %% Note: this file works from version 2.13.36
5 \version "2.13.46"
6 \header {
7 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
8
9   texidoces = "
10 Aquí se muestra la manera de ocultar las alteraciones de las notas
11 ligadas al comienzo de un sistema nuevo.
12
13 "
14
15   doctitlees = "Ocultar las alteraciones sobre notas ligadas al principio de un sistema nuevo"
16
17
18 %% Translation of GIT committish: 31097723b2b816696ad61696630a80ff17a39557
19   texidocfr = "Cet exemple illustre comment, lorsqu'une note affublée
20   d'une altération accidentelle est prolongée, ne pas répéter cette
21   altération après un saut de ligne.
22 "
23   doctitlefr = "Non répétition de l'altération après saut de ligne
24   sur liaison de prolongation"
25
26
27   lsrtags = "pitches"
28   texidoc = "This shows how to hide accidentals on tied notes at the beginning of a
29 new system."
30   doctitle = "Hiding accidentals on tied notes at the beginning of a new system"
31 } % begin verbatim
32
33
34 \relative c'' {
35   \override Accidental #'hide-tied-accidental-after-break = ##t
36   cis1~ cis~
37   \break
38   cis
39 }
40