Re: Font Change, staff size, lyric size

2013-01-08 Thread Thomas Morley
2013/1/8 Nels Daily :
> When I try to change fonts, and then staff size,
> only the staff size changes. Also I can't change
> the size of the lyrics from layout.
>
> \version "2.14.2"  % necessary for upgrading to future LilyPond versions.
>
> #(set-global-staff-size 14)
>
> \paper  {
>   myStaffSize = #14
> #(define fonts
> (make-pango-font-tree "Times New Roman"
>   "Helvetica"
>   "American Typewriter"
>(/ myStaffSize 15)))

Has to be
(/ myStaffSize 20)
!!


> }
>
> \relative c'' {
>   c4 c c c
> }
> \addlyrics {
> here are ly -- rics
> }
>
> \layout {
> \context {
> \Score

Better use \Lyrics

> \override LyricText #'font-size = #'0.1
> }
> }
>
>
> ___
> bug-lilypond mailing list
> bug-lilypond@gnu.org
> https://lists.gnu.org/mailman/listinfo/bug-lilypond


HTH,
  Harm

___
bug-lilypond mailing list
bug-lilypond@gnu.org
https://lists.gnu.org/mailman/listinfo/bug-lilypond


Re: Bug Squad Rota

2013-01-08 Thread Colin Hall
On Tue, Jan 08, 2013 at 05:54:17PM -, Phil Holmes wrote:
> "Colin Hall"  wrote in message
> >
> >New bug squad rota, effective from 9th January 2013 (tomorrow).
> >
> >Mon - Eluze
> >Tue - Ralph
> >Wed - Marek
> >Thu - Joe Wakeling (soon)
> >Fri - Colin H
> >Sat - Colin H
> >Sun - Federico
> >
> >Cheers,
> >Colin.
> 
> 
> You want me to push this to the CG?

Yes, please, Phil.

Cheers,
Colin.

-- 

Colin Hall

___
bug-lilypond mailing list
bug-lilypond@gnu.org
https://lists.gnu.org/mailman/listinfo/bug-lilypond


Parser diagnostics - failing to recognise \on-the-fly arguments as procedure type.

2013-01-08 Thread Ian Hulin
Hi all
Firstly apologies if I've not done too much investigation into this but
I'm currently working off my netbook from hospital.

I've been using Mark Wilmer's LyUtil package which looks really useful,
but I want to see whether the coe has uncovered something that gets the
parser confused.

LyUtil kicks off with a music function entry point with this inerface
definition

#(define* (ly-score:process prefix scorehead parthead
  movements instruments
  #:key transpose? include-parts? include-score? include-midi?
   (score-size 12) (part-size 24)  (score-paper 
#{ \paper
{} #})
(part-paper #{ \paper {} #})
(score-layout #{ \layout {} #}) (part-layout #{ \layout {} #})
(part-overrides '())
(frontmatter #{ \markuplist {} #}))

   (set-paper-staff-size score-paper score-size)
   (set-paper-staff-size part-paper part-size)
   (if include-score?
   (with-fluids ((ignore-cues? #t))
 (let ((score-book
   #{ \book { \paper { $score-paper }
\markuplist { $frontmatter } } #}))
   (for-each
(lambda (el)
  (ly:book-add-score!
   score-book
   (ly-score:make-score (car el) (cadr el)
 instruments #t transpose? score-layout include-midi?)))
movements)
   (ly:book-set-header! score-book (ly-score:alist->module scorehead))
   (ly:book-process score-book score-paper score-layout prefix
   (if include-parts?
   (ly-score:process-part prefix parthead movements instruments
part-layout part-paper part-overrides)))

i
However, if I code the #:score-paper parameter with is sort of thing:

 #:score-paper
#{
  \paper {
#(set-paper-size "a3")
oddFooterMarkup =  \markup{
   \fill-line{ \fromproperty #'header:title
  \center-column {
\on-the-fly #first-page
  \fromproperty #'header:publisher
  \on-the-fly #last-page
   \fromproperty #'header:copyright
   \fromproperty #'header:tagline
}
\bold \fontsize #3 %\on-the-fly #not-first-page
\fromproperty #'page:page-number-string
}
 }
  #}

Gives these diagnosics:

Processing
`/home/ian/Dropbox/MusicScoresDevelopment/ZadokThePriest/Coronation
Anthem 1.ly'
Parsing...
/home/ian/Dropbox/MusicScoresDevelopment/ZadokThePriest/Coronation
Anthem 1.ly:236:39: error: GUILE signaled an error for the expression
beginning here
  \on-the-fly #
   first-page
/home/ian/Dropbox/MusicScoresDevelopment/ZadokThePriest/Coronation
Anthem 1.ly:236:38: error: wrong type for argument 1.  Expecting
procedure, found #
  \on-the-fly
  #first-page
/home/ian/Dropbox/MusicScoresDevelopment/ZadokThePriest/Coronation
Anthem 1.ly:79:1: error: GUILE signaled an error for the expression
beginning here
#
 (ly-score:process
Unbound variable: first-page
Wrong type argument in position 1: (# . #f)
fatal error: failed files:
"/home/ian/Dropbox/MusicScoresDevelopment/ZadokThePriest/Coronation
Anthem 1.ly"
Exited with return code 1.

I suspect this could be a LilyPond bug rather than LyUtils.  Would
anyone with better access to resources have an opportunity to investigate.

Cheers and a Happy New Year to all 'Ponders
Ian Hulin

==
I cannot provide a truly minimal example, so here are pointers to all
necessary files to investigate:

Hi David,
Here are the links to the files on my DropBox public folder.

Bits of LyUtil needed:

http://dl.dropbox.com/u/3492570/OnTheFlyTest/ly-score.ly
http://dl.dropbox.com/u/3492570/OnTheFlyTest/ly-score-instruments.ly
http://dl.dropbox.com/u/3492570/OnTheFlyTest/ly-score-time-sig.ly

Project Files
http://dl.dropbox.com/u/3492570/OnTheFlyTest/OnTheFly.ly
(this one has the \on-the-fly calls enabled. )
http://dl.dropbox.com/u/3492570/OnTheFlyTest/OnTheFly2.ly
(this one has the \on-the-fly calls commented out. )
Files in sub-folder for Allegro movement
http://dl.dropbox.com/u/3492570/OnTheFlyTest/Allegro/cello.ly
http://dl.dropbox.com/u/3492570/OnTheFlyTest/Allegro/time_signature.ly
http://dl.dropbox.com/u/3492570/OnTheFlyTest/Allegro/viola.ly
http://dl.dropbox.com/u/3492570/OnTheFlyTest/Allegro/violin2.ly
http://dl.dropbox.com/u/3492570/OnTheFlyTest/Allegro/violin1.ly

Running OnTheFly2.ly does everything it apparently needs to do ad
produces all the output, but produces a "squawk" -

---
Processing `/home/ian/Dropbox/Public/OnTheFlyTest/OnTheFly2.ly'
Parsing...
Interpreting music...
Interpreting music...
Preprocessing graphical objects...
MIDI output to `OnTheFly2.midi'...
Finding the ideal number of pages...
Fitting music on 1 page...
Drawing systems...
Layout output to `OnTheFly2.ps'...

Font Change, staff size, lyric size

2013-01-08 Thread Nels Daily
When I try to change fonts, and then staff size,
only the staff size changes. Also I can't change
the size of the lyrics from layout.

\version "2.14.2"  % necessary for upgrading to future LilyPond versions.

#(set-global-staff-size 14)

\paper  {
  myStaffSize = #14
#(define fonts
(make-pango-font-tree "Times New Roman"
  "Helvetica"
  "American Typewriter"
   (/ myStaffSize 15)))
}

\relative c'' {
  c4 c c c
} 
\addlyrics {
here are ly -- rics
}

\layout {
\context {
\Score
\override LyricText #'font-size = #'0.1
}
}


___
bug-lilypond mailing list
bug-lilypond@gnu.org
https://lists.gnu.org/mailman/listinfo/bug-lilypond


Re: Bug Squad Rota

2013-01-08 Thread Phil Holmes
"Colin Hall"  wrote in message 
news:20130108173957.ga14...@edcsrv02.eng.allegro.msad...

On Tue, Jan 08, 2013 at 06:34:20PM +0100, Federico Bruni wrote:

2013/1/8 Eluze 

> Ralph Palmer-3 wrote
> >>
> >> I think this schedule meets those constraints:
> >>
> >> Mon - Eluze
> >> Tue - Ralph
> >> Wed - Marek
> >> Thu - Joe Wakeling (soon)
> >> Fri - Colin H
> >> Sat - Colin H
> >> Sun - Federico
> >>
> >> Everyone happy with that?
>
> I'm fine with this!
> Eluze
>

Me too, of course. I'll start next Sunday (13th).


Good!

New bug squad rota, effective from 9th January 2013 (tomorrow).

Mon - Eluze
Tue - Ralph
Wed - Marek
Thu - Joe Wakeling (soon)
Fri - Colin H
Sat - Colin H
Sun - Federico

Cheers,
Colin.



You want me to push this to the CG?

--
Phil Holmes
Bug Squad 




___
bug-lilypond mailing list
bug-lilypond@gnu.org
https://lists.gnu.org/mailman/listinfo/bug-lilypond


Re: Bug Squad Rota

2013-01-08 Thread Colin Hall
On Tue, Jan 08, 2013 at 06:34:20PM +0100, Federico Bruni wrote:
> 2013/1/8 Eluze 
> 
> > Ralph Palmer-3 wrote
> > >>
> > >> I think this schedule meets those constraints:
> > >>
> > >> Mon - Eluze
> > >> Tue - Ralph
> > >> Wed - Marek
> > >> Thu - Joe Wakeling (soon)
> > >> Fri - Colin H
> > >> Sat - Colin H
> > >> Sun - Federico
> > >>
> > >> Everyone happy with that?
> >
> > I'm fine with this!
> > Eluze
> >
> 
> Me too, of course. I'll start next Sunday (13th).

Good!

New bug squad rota, effective from 9th January 2013 (tomorrow).

Mon - Eluze
Tue - Ralph
Wed - Marek
Thu - Joe Wakeling (soon)
Fri - Colin H
Sat - Colin H
Sun - Federico

Cheers,
Colin.

-- 

Colin Hall
Bug Meister.

___
bug-lilypond mailing list
bug-lilypond@gnu.org
https://lists.gnu.org/mailman/listinfo/bug-lilypond


Re: Bug Squad Rota

2013-01-08 Thread Federico Bruni
2013/1/8 Eluze 

> Ralph Palmer-3 wrote
> >>
> >> I think this schedule meets those constraints:
> >>
> >> Mon - Eluze
> >> Tue - Ralph
> >> Wed - Marek
> >> Thu - Joe Wakeling (soon)
> >> Fri - Colin H
> >> Sat - Colin H
> >> Sun - Federico
> >>
> >> Everyone happy with that?
>
> I'm fine with this!
> Eluze
>

Me too, of course. I'll start next Sunday (13th).
___
bug-lilypond mailing list
bug-lilypond@gnu.org
https://lists.gnu.org/mailman/listinfo/bug-lilypond


Re: Bug Squad Rota

2013-01-08 Thread Eluze
Ralph Palmer-3 wrote
>>
>> I think this schedule meets those constraints:
>>
>> Mon - Eluze
>> Tue - Ralph
>> Wed - Marek
>> Thu - Joe Wakeling (soon)
>> Fri - Colin H
>> Sat - Colin H
>> Sun - Federico
>>
>> Everyone happy with that?

I'm fine with this!
Eluze



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Bug-Squad-Rota-tp138908p139054.html
Sent from the Bugs mailing list archive at Nabble.com.

___
bug-lilypond mailing list
bug-lilypond@gnu.org
https://lists.gnu.org/mailman/listinfo/bug-lilypond


Re: Bug Squad Rota

2013-01-08 Thread Ralph Palmer
>
> I think this schedule meets those constraints:
>
> Mon - Eluze
> Tue - Ralph
> Wed - Marek
> Thu - Joe Wakeling (soon)
> Fri - Colin H
> Sat - Colin H
> Sun - Federico
>
> Everyone happy with that?


Works for me. Thanks, everyone!

Ralph
___
bug-lilypond mailing list
bug-lilypond@gnu.org
https://lists.gnu.org/mailman/listinfo/bug-lilypond


Re: Bug Squad Rota

2013-01-08 Thread Marek Klein
2013/1/8 Colin Hall 

> Everyone happy with that?
>
LGTM

Marek
___
bug-lilypond mailing list
bug-lilypond@gnu.org
https://lists.gnu.org/mailman/listinfo/bug-lilypond