File: mark-align-priority.ly

package info (click to toggle)
lilypond 2.24.4-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 70,352 kB
  • sloc: cpp: 87,962; lisp: 43,344; xml: 31,269; python: 22,974; sh: 4,090; yacc: 4,080; perl: 2,873; lex: 1,387; makefile: 76
file content (33 lines) | stat: -rw-r--r-- 524 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33

\header {
  texidoc = "When the break-align-symbols property is given as a list,
  the alignment depends on which symbols are visible."
}

\version "2.23.14"
  
\relative {
  \override Score.TextMark.break-align-symbols = #'(clef key-signature staff-bar)
  \override Score.TextMark.self-alignment-X = #CENTER
  c'1
  \clef "bass"
  \textMark "clef"
  \noBreak

  c1
  \clef "treble"
  \key g \major
  \textMark "clef"
  \noBreak

  c1
  \key f \major
  \textMark "key"
  \noBreak

  c1
  \textMark "bar"
  \noBreak

  c1
}