Karl:
> Phil Holmes:
> > From: <[email protected]>
> > >I have a piece with the following time sigs:
> > > alla breve
> > > timesig.mensural34 followed by a 3.
> > > alla breve
> > >
> > > How do I typeset the timesig.mensural34 followed by a 3 where
> > > it should be ?
...

Found a solution, thank Jean for your suggestion that made me solve this.
==============
\version "2.18.0"

dupla = {
  \override Staff.TimeSignature #'text = \markup {\musicglyph 
#"timesig.mensural22"}
  \time 2/1
}
tripla = {
  \override Staff.TimeSignature #'text = \markup {\musicglyph 
#"timesig.mensural34" \lower #0.9 \bold \large "3"}
  \time 3/1
}

Ma = \relative a' {
  \override Score.TimeSignature #'stencil = #ly:text-interface::print
  \override Score.NoteHead #'style = #'baroque

  \dupla   a1 b |
  \tripla  cis\breve cis1 |
  \dupla   d1. d2 |
}
\score { \new Staff \Ma }
==============

Seems that

 \set Staff.timeSignatureFraction = #'(2 . 2)

which I used for alla breve, interferred with

  \override Staff.TimeSignature #'stencil = #ly:text-interface::print
  \override Staff.TimeSignature #'text = \markup {\musicglyph 
#"timesig.mensural34" \lower #0.9 \bold \large "3"}

in some way.

Regards,
/Karl Hammar

-----------------------------------------------------------------------
Aspö Data
Lilla Aspö 148
S-742 94 Östhammar
Sweden
+46 173 140 57



_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to