repo.or.cz
/
lilypond
/
patrick.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixes Issue 1504, allowing feather beam line breaking.
[lilypond/patrick.git]
/
input
/
regression
/
tablature-zero-finger.ly
blob
78249eec5f85961c087db4a34907419eed72d90e
1
\version
"2.13.42"
2
3
\header
{
4
texidoc
=
"
5
A fingering indication of zero counts as an open string for fret
6
calculations. An inappropriate request for an open string will generate
7
a warning message and set the requested pitch in the tablature.
8
"
9
}
10
11
mymusic
=
\relative
c
{
12
\set
minimumFret
= #
1
13
<
d
-
0
d
'
-
2
f
-
3
a
-
1
>
1
14
<
f
-
0
>
15
}
16
17
\score
{
18
<<
19
\new
Staff
{
20
\clef
"treble_8"
21
\mymusic
22
}
23
\new
TabStaff
{
24
\mymusic
25
}
26
>>
27
}