]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/slur-staccato.ly
* scripts/lilypond-book.py (do_file): do not overwrite input file.
[lilypond.git] / input / regression / slur-staccato.ly
1
2 \version "2.1.26"
3 \header {
4 texidoc="An extra offset may be added between a slur and staccato(s)."
5 }
6
7 \paper { raggedright = ##t}
8
9 \score {
10   \context Staff \notes\relative c'' {
11     \override Slur 
12       #'attachment-offset = #'((0 . 1) . (0 . 1))
13     a-.( g-.  a)-.
14     \override Slur 
15       #'attachment-offset = #'((0 . 1.5) . (0 . 1.5))
16     b-.( a-.  b)-.
17   }
18 }