2002-11-14 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+ * scm/music-types.scm (music-descriptions): no length for tempo event.
+
* input/*.ly: add \version everywhere.
* input/*.ly: update syntax to 1.7 + new-chords.
def sub_chord (m):
str = m.group(1)
+ origstr = '<%s>' % str
if re.search (r'\\\\', str):
- return '<%s>' % str
+ return origstr
+
+ if re.search (r'\\property', str):
+ return origstr
if re.match (r'^\s*\)?\s*\\[a-zA-Z]+', str):
- return '<%s>' % str
+ return origstr
durs = []
def sub_durs (m):
}
\score {
- \notes \transpose c'' {
+ \notes \transpose c c' {
\property Staff.Clef \set #'break-visibility = #end-of-line-visible
\property Staff.KeySignature \set #'break-visibility = #end-of-line-visible
\property Staff.explicitClefVisibility = #end-of-line-visible
<<f ais >>8
\figures {
r8
- <<1 3 5>>4 <<3- 5+ 6!>> <<5>>
+ <1 3 5>4 <3- 5+ 6!> <5>
}
}
\context Voice {
g1:3-.4.7
% another hard way:
- \notes<< g' bes c d f >>1
+ \notes { << g' bes c d f >>1 }
% bit easier:
g1:m.4.7
\property Staff.instr = "Vla."
\m
>
- \context Staff = vlc <<
- %% \property Staffinstrument = "Violoncello"
- \property Staffinstrument = #'(lines "Violoncello" "e" "Contrabasso")
- \property Staffinstr = "Vlc"
+ \context Staff = vlc <
+ %% \property Staff.instrument = "Violoncello"
+ \property Staff.instrument = #'(lines "Violoncello" "e" "Contrabasso")
+ \property Staff.instr = "Vlc"
\m
- >>.
+ >
\context Staff = cb <
\property Staff.instrument = "Contrabasso"
\property Staff.instr = "C.B."
\End
>
-violinoIIStaff = \context Staff = twoViolini <<
+violinoIIStaff = \context Staff = twoViolini <
% MIDI hoort geeneens verschil tussen een
% eerste en tweede viool -)
- \property StaffmidiInstrument = #"violin"
- \property Staffinstrument = #"Violino II"
- \property Staffinstr = #"Vl II"
+ \property Staff.midiInstrument = #"violin"
+ \property Staff.instrument = #"Violino II"
+ \property Staff.instr = #"Vl II"
\violinoII
\End
->>.
+>
violaI = \notes\transpose c' c, \violinoI
(TempoEvent
. (
(description . "")
-
+ (length . #f)
(internal-class-name . "Event")
(types . (general-music tempo-event event))
))