--- /dev/null
+\version "1.3.148"
+\header {
+
+texidoc="
+The definition of markup is incomplete.
+
+Ideally, either the input is valid, and all information therein is
+used, or it is invalid, and an error message is produced."
+
+}
+
+
+\score { \notes \relative c' {
+ f_#'(lines "one" ( "tow"))
+
+ % FIXED:three ignored
+ f_#'(lines "one" ( "two" "three" ))
+
+ % right way of using multiple markups
+ f_#'(lines "one" ((bold italic) "towo"))
+
+ % italic ignored.
+ % possibly explicit relaxed code for chords stuff, must check
+ f_#'(lines "one" (bold italic "towo"))
+
+ }}
--- /dev/null
+\version "1.3.148"
+\header {
+texidoc="multi-measure-rests (bar 2) should `collide' (ie, not clash)
+ with notes, just as normal rests (bar 1)."
+}
+
+\score {
+ \notes\context Staff <
+ \context Voice=one \relative c''{
+ d d d d
+ d d d d
+ }
+ \context Voice=two {
+ r1
+ R
+ }
+ >
+}
\ No newline at end of file
--- /dev/null
+\version "1.3.148"
+%docme -- geen id, lijkt ok?
+
+\include "paper20.ly"
+Sopnotes = \notes {
+ \time 4/4
+ \key g \major
+ \clef treble
+ \partial 8 * 3
+ e'8 f'8 g'8 |
+ d'8 d'16 d'16 e'8. e'16 g'8 g'8 f'8 f'8
+}
+
+\score {
+ \notes
+ <
+ \context Staff="sop"
+ <
+ \Sopnotes
+ >
+ >
+ \paper {
+ \translator {
+ \StaffContext
+ autoBeamSettings \override #'(end * * * * ) = #(make-moment 1 8)
+ }
+ }
+}