]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tie-single.ly
Merge commit 'origin' into includes
[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 inbetween.
15  
16 @end itemize
17 "
18
19 }
20 \layout {
21   indent = #0.0
22   ragged-right = ##t
23 }
24
25 \version "2.12.0"
26
27 frag =
28 \relative c'' {
29   c16 c2...~ c16 ~ c2... |
30   c4~c8 c8~c16 c16~c32 c16.~[ c64]~ c64[ 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 }