lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: ancient custom time signature


From: karl
Subject: Re: ancient custom time signature
Date: Tue, 21 Feb 2017 16:06:27 +0100 (CET)

Karl:
> Phil Holmes:
> > From: <address@hidden>
> > >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





reply via email to

[Prev in Thread] Current Thread [Next in Thread]