]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tie-single.ly
Merge remote-tracking branch 'origin/translation' into staging
[lilypond.git] / input / regression / tie-single.ly
1 \header
2 {
3   texidoc = "Formatting for isolated ties.
4
5 @itemize @bullet
6 @item short ties are in spaces
7 @item long ties cross staff lines
8 @item ties avoid flags of left stems.
9 @item ties avoid dots of left notes.
10
11 @item short ties are vertically centered in the space, as well those
12 that otherwise don't fit in a space
13
14 @item extremely short ties are put over the noteheads, instead of between.
15  
16 @end itemize
17 "
18
19 }
20 \layout {
21   indent = #0.0
22   ragged-right = ##t
23 }
24
25 \version "2.19.2"
26
27 frag =
28 \relative c'' {
29   c16 c2...~ 16 ~ 2... |
30   c4~8 c8~16 c16~32 c16.~[ c64]~ 64[ c8..] |
31 }
32
33
34 \new Staff \with {
35   \remove "Time_signature_engraver"
36 } {
37   \stemUp
38
39   \frag \break
40   \transpose c d \frag\break
41   \transpose c e \frag
42   
43 }