]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/hiding-accidentals-on-tied-notes-at-the-start-of-a-new-system.ly
Allow user-defined predefined fretboard hash-table
[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.26
5 \version "2.13.36"
6 \header {
7 %% Translation of GIT committish: 31097723b2b816696ad61696630a80ff17a39557
8   texidocfr = "Cet exemple illustre comment, lorsqu'une note affublée
9   d'une altération accidentelle est prolongée, ne pas répéter cette
10   altération après un saut de ligne.
11 "
12   doctitlefr = "Non répétition de l'altération après saut de ligne
13   sur liaison de prolongation"
14
15
16   lsrtags = "pitches"
17   texidoc = "This shows how to hide accidentals on tied notes at the beginning of a
18 new system."
19   doctitle = "Hiding accidentals on tied notes at the beginning of a new system"
20 } % begin verbatim
21
22
23 \relative c'' {
24   \override Accidental #'hide-tied-accidental-after-break = ##t
25   cis1~ cis~
26   \break
27   cis
28 }
29