diff options
author | Thomas Morley <thomasmorley65@gmail.com> | 2015-11-01 16:18:26 +0100 |
---|---|---|
committer | Thomas Morley <thomasmorley65@gmail.com> | 2015-11-07 19:17:25 +0100 |
commit | 7f1b4934f96cfea964986c29d4048e6e794b9611 (patch) | |
tree | 3c2d3572cdc471069c1d3d4137932814bc7076fb /ly | |
parent | 0f3099177a2a23347b0a8c0895adbebc87d416be (diff) |
quarter tones in tablature
issue 4643
micro-tones in TabStaff are now printable. Unless the chosen
string-tuning will allow it, this feature is disabled for
FretBoards.
- changing determine-frets (adding an optional argument) and
fret-number-tablature-format
- adding a regtest with quarter-tone-string-tuning
- documenting it in Documentation/notation/fretted-strings.itely
and Documentation/changes.tely
Diffstat (limited to 'ly')
-rw-r--r-- | ly/engraver-init.ly | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ly/engraver-init.ly b/ly/engraver-init.ly index 62559ca40f..eade287f1a 100644 --- a/ly/engraver-init.ly +++ b/ly/engraver-init.ly @@ -620,7 +620,8 @@ automatically when an output definition (a @code{\\score} or \accepts "TabStaff" \accepts "VaticanaStaff" - noteToFretFunction = #determine-frets + %% (determine-frets #t) would support micro-tones + noteToFretFunction = #(determine-frets) predefinedDiagramTable = ##f soloText = #"Solo" soloIIText = #"Solo II" |