]> 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; 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.29"
6 \header {
7   lsrtags = "pitches"
8   texidoc = "This shows how to hide accidentals on tied notes at the beginning of a
9 new system."
10   doctitle = "Hiding accidentals on tied notes at the beginning of a new system"
11 } % begin verbatim
12
13
14 \relative c'' {
15   \override Accidental #'hide-tied-accidental-after-break = ##t
16   cis1~ cis~
17   \break
18   cis
19 }
20