--- /dev/null
+\version "1.3.148"
+\score {
+ \context Staff \notes\relative c''<
+ \context Voice=one {
+ \voiceOne
+ e2->
+ }
+ \context Voice=two {
+ \voiceTwo
+ f,2->
+ }
+ >
+}
\ No newline at end of file
--- /dev/null
+\version "1.3.148"
+\header {
+texidoc="setting staff symbol properties the normal way is broken"
+ title = "ancient font test"
+ date = "2000"
+}
+
+
+
+\include "paper26.ly"
+
+global = \notes {
+ \property Score.timing = ##f
+% \property Staff.TimeSignature \override #'style = #'old
+}
+
+upperVoice = \context Staff = upperVoice <
+ \global
+ \property Staff.StaffSymbol \override #'line-count = #4
+ \notes \transpose c' {
+ \property Voice.NoteHead \override #'style = #'mensural
+ \property Voice.Stem \override #'stem-centered = ##t
+ \property Staff.Custos \override #'style = #'vaticana
+ \clef "vaticana_fa2"
+ c2 d e f g
+
+% \property Staff.clefGlyph = #"clefs-vaticana_do"
+% \property Staff.clefPosition = #1
+% \property Staff.clefOctavation = #0
+ \clef "vaticana_do2"
+
+ a b c'
+ b a g f
+ \clef "vaticana_fa1"
+ e d c1 \bar "|"
+
+ \property Staff.Custos \override #'style = #'medicaea
+ \clef "medicaea_fa2"
+ c2 d e f g
+ \clef "medicaea_do2"
+ a b c'
+ b a g f
+ \clef "medicaea_fa1"
+ e d c1 \bar "|"
+
+ \property Staff.Custos \override #'style = #'hufnagel
+ \clef "hufnagel_fa2"
+ c2 d e f g
+ \clef "hufnagel_do2"
+ a b c'
+ b a g f
+ \clef "hufnagel_fa1"
+ e d c1 \bar "||"
+ }
+>
+
+lowerVoice = \context Staff = lowerNotes <
+ \global
+ \property Staff.StaffSymbol \override #'line-count = #5
+ \notes \transpose c' {
+ \property Voice.NoteHead \override #'style = #'mensural
+ \property Voice.Stem \override #'stem-centered = ##t
+ \property Staff.Custos \override #'style = #'mensural
+ \clef "mensural1_c2"
+ c2 d e f g
+ \property Staff.forceClef = ##t
+ \clef "mensural1_c2"
+ a b c'
+ b a g f
+ \clef "mensural2_c2"
+ e d c1 \bar "|"
+
+ \clef "mensural2_c2"
+ c2 d e f g
+ \property Staff.forceClef = ##t
+ \clef "mensural3_c2"
+ a b c'
+ b a g f
+ \clef "mensural3_c2"
+ e d c1 \bar "|"
+
+ \clef "mensural1_f"
+ c2 d e f g
+ \property Staff.forceClef = ##t
+ \clef "mensural1_f"
+ a b c'
+ b a g f
+ \clef "mensural2_f"
+ e d c1 \bar "|"
+
+ \property Staff.forceClef = ##t
+ \clef "mensural2_f"
+ c2 d e f g
+ \clef "mensural_g"
+ a' b' c''
+ b' a' g' f'
+ \property Staff.forceClef = ##t
+ \clef "mensural_g"
+ e' d' c'1 \bar "|"
+
+ \property Staff.forceClef = ##t
+ \clef "mensural_g"
+ c'2 d' e' f' g'
+ \clef "hufnagel_do_fa"
+ a b c'
+ b a g f
+ \property Staff.forceClef = ##t
+ \clef "hufnagel_do_fa"
+ e d c1 \bar "||"
+ }
+>
+
+\score {
+ \context ChoirStaff <
+ \upperVoice
+ \lowerVoice
+ >
+ \paper {
+% \paperTwentysix
+ linewidth = 17.25\cm
+ textheight = 26.0\cm
+ indent = 0.0
+ \translator {
+ \StaffContext
+ \consists Custos_engraver
+% Custos \override #'style = #'mensural
+ \remove Time_signature_engraver
+% StaffSymbol \override #'line-count = #4
+ }
+ }
+}
+
--- /dev/null
+\version "1.3.148"
+
+\header {
+texidoc = "Staves that end half way a system should end at the bar line."
+}
+
+melody = \notes \relative c' {
+ \partial 8
+ g8 |
+ \bar "|."\clef bass
+}
+
+
+
+accompaniment = \chords \sequential {
+ r8
+ r2 r2
+}
+
+\score {
+ \simultaneous {
+ \context ChordNames \accompaniment
+ \context Staff {
+ \melody }
+ }
+ \paper { }
+}
--- /dev/null
+\version "1.3.148"
+
+\header {
+
+texidoc = "tuplet bracket doesn't behave properly at line break. Not a real problem."
+}
+
+\score{
+ \notes\relative c''<
+ { % broken cresc dumps core
+ c2 c4*2/3 \times 2/3 { c( c c }
+ c4 c c c
+ } >
+ \paper{
+ indent = 0.
+ linewidth=30.\mm
+ }
+}
--- /dev/null
+\version "1.3.148"
+
+\header {
+texidoc = " Spacing for one staff in polymetric music should
+be not hampered by a staff in another time signature."
+}
+
+\score{
+ \context PianoStaff <
+ \context Staff = upper \notes\relative c''{
+ \property Staff.timeSignatureFraction = #'(3 . 4)
+ c4 c c
+ c2.
+
+ }
+ \context Staff = lower \notes\relative c' {
+ \property Staff.timeSignatureFraction = #'(4 . 4)
+ c4 c c c
+ c1
+ }
+ >
+ \paper{
+ linewidth=-1.0
+ \translator {
+ \ScoreContext
+ \remove Timing_engraver
+ }
+ \translator {
+ \StaffContext
+ \consists Timing_engraver
+ }
+ }
+}
--- /dev/null
+\version "1.3.148"
+
+\header {
+ texidoc = "Dots should remain close to the heads they belong to, but should not overlap."
+}
+
+
+\score {
+ \notes
+ \context Voice { <f,4. c'' d e f> }
+}
--- /dev/null
+\include "norsk.ly"
+
+\header {
+texidoc ="``baz'' should be centered on the a (tenor voice), but it is
+not."
+}
+
+\version "1.3.148"
+
+sop = \notes \transpose c'' {e2 e fis1 }
+alt = \notes \relative c' {cis2 e e d }
+ten = \notes \relative c' {a2 a a1 }
+txt = \lyrics {foo2 bar baz jazz }
+
+\score {
+ <
+ \context Staff = up \notes <
+ \context Voice=sopv {\stemUp \sop}
+ \context Voice=altv {\stemDown \alt}
+ >
+ \context Staff = down \notes < \clef "F"
+ \context Voice=tenv {\stemUp \ten}
+ >
+ \context Lyrics = la { \txt }
+ >
+ \paper { linewidth = -1 }
+}
--- /dev/null
+\version "1.3.148"
+
+\header { texidoc= "Spacing after clef/key should be stretched
+equidistantly for large stretching, but should stay clear of prefatory
+matter for small stretching. Support in the spacing engine for
+separate spring constants for stretching/shrinking is needed"
+}
+
+foo = \notes\relative c'' { \key as \major f }
+
+\score {
+
+ < \foo
+ >
+}
--- /dev/null
+\version "1.3.148"
+\header {
+texidoc = "slur or long note on other staves fool lily into extending melisma"
+}
+\score {
+ <
+ \addlyrics
+ \notes {
+ \property Staff.automaticMelismata= ##t
+ c4 () c r c
+ }
+ \context Lyrics \lyrics { foo __ bar }
+ \context Staff=foolMelismata \notes{
+ c4 ( c c ) c
+ }
+ \context Staff=foolMelismata \notes{
+ c1
+ }
+ >
+}
\ No newline at end of file
--- /dev/null
+\version "1.3.148"
+
+\header{
+texidoc = "
+Slurs should be attached to note heads, except when they would collide
+with beams. Also see: ophee-slurs.
+"
+}
+\score{
+ \notes \relative c''{
+ \property Voice.Slur \set #'direction = #1
+ a8( a )a4
+ a4( a8 )a
+ a8 a()a4
+ a4() a8 a
+ }
+ \paper{
+ indent = 0.0
+ linewidth = 100.\mm
+ }
+}
--- /dev/null
+\version "1.3.148"
+
+\header {
+texidoc = "1st beam should prob. be horizontal."
+}
+
+\score { \notes <{ [ r8 g''16 des'] [r8 c16 a] }>}
--- /dev/null
+\version "1.3.148"
+
+
+\header {
+texidoc = "LilyPond doesn't kern text, but TeX does, leading to skewed results: the VAVAVAVA takes less space than LilyPond thinks it does." }
+
+\score {
+ \notes \relative c'' < \context Voice {
+% c16 c16 c16 c16 c4
+ c4 c4 c4
+ }
+\context Lyrics \lyrics { foobar4 -- VAVAVAVAV4 -- foobar4 } >
+
+
+ \paper { linewidth = -10.0\cm }
+}