[tablatures] guitar/bass tablature templates in frescobaldi |
[ Thread Index |
Date Index
| More lilynet.net/tablatures Archives
]
- To: tablatures@xxxxxxxxxxx, frescobaldi@xxxxxxxxxxxxxxxx
- Subject: [tablatures] guitar/bass tablature templates in frescobaldi
- From: rosea grammostola <rosea.grammostola@xxxxxxxxx>
- Date: Mon, 14 Dec 2009 11:11:06 +0100
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:subject:content-type; bh=Sgbbba8xT8PcRfCnwF6iz0VQjwrbtjlivlbymjlA+HI=; b=m9ugvu0KAZbjrElV/SJffNteayllKZ5pI+B7s2556rKuF/5A20xIypmfXVfw+/druj 13n1bWLd60CN1b4kxFibMhtmog6s70BXpLXYBqaytyx0V1344nd3yBpjscSH+fv4kWnu Tx5mgIMIY6BUffM1vUywEV+i7v0GPxLr4KkKc=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject :content-type; b=Mt3SlTOy6tLPzd5Lw+gDLrJQNp24T3s3wvQhcLBoYRBjG6ThbF5lRuYLZt96h0xYT8 iA0DwGkjHEoeeMjHFzmzCyRLtZuqkNOtMHFMqm6apg9PZ1Ar0I6oeQkjbmxKk/blu/1g kXQ+cx2a8t8Xyqfx3jbItxAbVJkOYOt3j4vcU=
Hi,
Would be nice if the tablature templates in Frescobaldi could be
improved, and implement the new tablature functionality. Also it would
be nice to be able to implement bends and hammerons etc. easily.
Is there an expert who can make some templates? Maybe it's good to
download frescobaldi and try it yourself (score wizard).
See attachment for some examples I get now, for guitar and bass, only
tablature and both tablature and notation, guitar tuning and default
tuning, one voice and more voices.
Regards,
\r
\version "2.13.9"
global = {
\key c \major
\time 4/4
}
electricBass = \relative c, {
\global
% Music follows here.
}
\score {
\new TabStaff \with {
stringTunings = #bass-tuning
midiInstrument = "electric bass (finger)"
\consists "Instrument_name_engraver"
instrumentName = "Electric bass"
} \electricBass
\layout { }
\midi {
\context {
\Score
tempoWholesPerMinute = #(ly:make-moment 100 4)
}
}
}
\version "2.13.9"
global = {
\key c \major
\time 4/4
}
electricBass = \relative c, {
\global
% Music follows here.
}
\score {
\new TabStaff \with {
midiInstrument = "electric bass (finger)"
\consists "Instrument_name_engraver"
instrumentName = "Electric bass"
} \electricBass
\layout { }
\midi {
\context {
\Score
tempoWholesPerMinute = #(ly:make-moment 100 4)
}
}
}
\version "2.13.9"
global = {
\key c \major
\time 4/4
}
jazzGuitar = \relative c' {
\global
% Music follows here.
}
\score {
\new StaffGroup \with {
\consists "Instrument_name_engraver"
instrumentName = "Jazz guitar"
} <<
\new Staff \with {
midiInstrument = "electric guitar (jazz)"
} { \clef "treble_8" \jazzGuitar }
\new TabStaff \with {
stringTunings = #guitar-tuning
} \jazzGuitar
>>
\layout { }
\midi {
\context {
\Score
tempoWholesPerMinute = #(ly:make-moment 100 4)
}
}
}
\version "2.13.9"
global = {
\key c \major
\time 4/4
}
jazzGuitar = \relative c' {
\global
% Music follows here.
}
\score {
\new TabStaff \with {
midiInstrument = "electric guitar (jazz)"
\consists "Instrument_name_engraver"
instrumentName = "Jazz guitar"
} \jazzGuitar
\layout { }
\midi {
\context {
\Score
tempoWholesPerMinute = #(ly:make-moment 100 4)
}
}
}
\version "2.13.9"
global = {
\key c \major
\time 4/4
}
jazzGuitar = \relative c' {
\global
% Music follows here.
}
\score {
\new TabStaff \with {
stringTunings = #guitar-tuning
midiInstrument = "electric guitar (jazz)"
\consists "Instrument_name_engraver"
instrumentName = "Jazz guitar"
} \jazzGuitar
\layout { }
\midi {
\context {
\Score
tempoWholesPerMinute = #(ly:make-moment 100 4)
}
}
}
\version "2.13.9"
global = {
\key c \major
\time 4/4
}
upper = \relative c' {
\global
% Music follows here.
}
lower = \relative c' {
\global
% Music follows here.
}
\score {
\new TabStaff \with {
stringTunings = #guitar-tuning
midiInstrument = "electric guitar (jazz)"
\consists "Instrument_name_engraver"
instrumentName = "Jazz guitar"
} <<
\new TabVoice { \voiceOne \upper }
\new TabVoice { \voiceTwo \lower }
>>
\layout { }
\midi {
\context {
\Score
tempoWholesPerMinute = #(ly:make-moment 100 4)
}
}
}