]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/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 / new / hiding-accidentals-on-tied-notes-at-the-start-of-a-new-system.ly
1 \version "2.14.0"
2 \header {
3   lsrtags = "pitches"
4   texidoc = "This shows how to hide accidentals on tied notes at the beginning of a
5 new system."
6   doctitle = "Hiding accidentals on tied notes at the beginning of a new system"
7 }
8
9 \relative c'' {
10   \override Accidental #'hide-tied-accidental-after-break = ##t
11   cis1~ cis~
12   \break
13   cis
14 }
15