Re: Notation snippets

2016-01-03 Thread Jayaratna
Ouch, I thought you could import glyphs from svg: my knowledge of Metafont is
= 0 



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Notation-snippets-tp185122p185496.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Notation snippets

2015-12-29 Thread Jayaratna

It's only 24 glyphs, not too much work. 
I can export them in svg format, but I'd need two to know on what original
the petrucci noteheads have been drawn after. I've never made a font, I
guess the glyphs are to be precisely placed on their font slots. Stems will
have to be reduced.


 



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Notation-snippets-tp185122p185295.html
Sent from the User mailing list archive at Nabble.com.

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


Notation snippets

2015-12-27 Thread Jayaratna
Dear Lilipondians,

I am trying to make a page which shows a series of music symbols, each of
them appearing on a standard staff of a given measure. So far I can print
clefs and other symbols, but with no staff lines.

Any idea on how to make this?

Thank you,
A

\version "2.18.2"

\paper {
  
  indent = 0\mm
  paper-width = 100\pt
  paper-height = 100\pt
  top-margin = 0\mm
  bottom-margin = 0\mm
  oddFooterMarkup   = ""
  oddHeaderMarkup   =  ""
  evenFooterMarkup   =  ""
  evenHeaderMarkup   = ""
  ragged-last = ##f
  systems-per-page = #1 
  print-page-number = #f 
}

\markup{
\fill-line{
  
  
 
  \score {
  \new Staff { \clef "violin" }
  \layout { 
%\omit Staff.Clef
\omit Staff.TimeSignature
   }
  
  }
  
  \hspace #2
 \score {
  \new Staff { \time 4/4 }
  \layout { \context MensuralStaff \override NoteHead.style = #'petrucci 
\omit Staff.Clef
%\omit Staff.TimeSignature
   }
  
  }
  
\hspace #2

}
}



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Notation-snippets-tp185122.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Notation snippets

2015-12-27 Thread Jayaratna
I'm downloading the newest version. Hope I can keep both versions on my
system.

In any case, is it possible to center the last notes with the staff lines?

Thank you,
A



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Notation-snippets-tp185122p185128.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Notation snippets

2015-12-27 Thread Jayaratna
Hello, Harm,

all notehad styles are supported, but petrucci, semipetrucci and
blackpetrucci styles do not give the proper flag: maybe I should post this
on the bugs list.

 


\version "2.19.34"


my-staff = \markup\stencil
 #(make-path-stencil
'(M  0  2 L 10 2
  M  0  1 L 10  1
  M  0  0 L 10  0
  M  0 -1 L 10 -1
  M  0 -2 L 10 -2)
0.1 1 1 #f)

\markup{

\combine
  \my-staff
  \translate #'(0 . 0)
  \combine
  \override #'(style . mensural) 

  \note-by-number #5 #0 #UP
   \translate #'(1 . 0)
  \combine
  \override #'(style . neomensural) 

  \note-by-number #5 #0 #UP
   \translate #'(1 . 0)
  \combine
  \override #'(style . petrucci) 
  \note-by-number #5 #0 #UP 
  

   \translate #'(1.5 . 0)
  \combine
  \override #'(style . semipetrucci) 
  \note-by-number #4 #0 #UP 

   \translate #'(1.5 . 0)
  \combine
  \override #'(style . blackpetrucci) 
  \note-by-number #3 #0 #UP 

   \translate #'(1.5 . 0)
  \combine
  \override #'(style . semipetrucci) 
  \note-by-number #-1 #0 #UP 
  
 \translate #'(1.5 . 0)
  \combine
  \override #'(style . blackpetrucci) 
  \note-by-number #-1 #0 #UP 
  
  \hspace #3
}



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Notation-snippets-tp185122p185143.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Notation snippets

2015-12-27 Thread Jayaratna
Hello Simon,

thanks for the advice, I've got both version running on Frescobaldinow.
:D

Ciao,
Andy



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Notation-snippets-tp185122p185148.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Notation snippets

2015-12-27 Thread Jayaratna
I hope these will be understandable:

workex.ly   

 

It should be like this, but I can't extend the lines over the clefs. I also
need the music symbols to be centered with the staves, and the staff lines
to be of a fixed lenght.

 Thank you,
A



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Notation-snippets-tp185122p185125.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Notation snippets

2015-12-27 Thread Jayaratna
Thank you, Pierre and Schneidy,

it works. What about mensural notes as well?
Mensural flags are not suupported by \note-by-number... :(

  %% note
  \combine
  \my-staff
  \translate #'(2 . 0)
  \combine
  \override #'(style . petrucci) 
  \override #'(flag-style . mensural-flag ) 
  \note-by-number #5 #0 #UP
 

Thanks,
Andy





--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Notation-snippets-tp185122p185136.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Notation snippets

2015-12-27 Thread Jayaratna
It does not support the proper flag with bigger noteheads

:_(

Thank you anyway.

A

%% note
  \combine
  \my-staff
  \translate #'(0 . 0)
  \combine
  \override #'(style . mensural) 
  %\override #'(flag-style . mensural-flag ) 
  \note-by-number #5 #0 #UP
   \translate #'(1 . 0)
  \combine
  \override #'(style . neomensural) 
  %\override #'(flag-style . mensural-flag ) 
  \note-by-number #5 #0 #UP
   \translate #'(1 . 0)
  \combine
  \override #'(style . petrucci) 
  %\override #'(flag-style . mensural-flag ) 
  \note-by-number #5 #0 #UP
  \hspace #3




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Notation-snippets-tp185122p185139.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Notation snippets

2015-12-27 Thread Jayaratna
Thank you so much, Harm. 

Maybe I could/should draw the glyphs for petrucci style flags. They should
not be too much work if I can start from a draft.

Andy



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Notation-snippets-tp185122p185153.html
Sent from the User mailing list archive at Nabble.com.

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


Reflect a score

2015-10-26 Thread Jayaratna
Dear Lilypondians,

is there a way to flip a score?

I also need accidentals to be printed after the notes (so that when the
score is flipped the accidentals will appear before notes).

\version "2.18.2"


\markup{

\score{
  \new Staff { \relative c'' {a b cis d}}
  
  \layout{}
}


}

Thank you,
A



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Reflect-a-score-tp182757.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Reflect a score

2015-10-26 Thread Jayaratna
Thank you, Pierre!




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Reflect-a-score-tp182757p182762.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Reflect a score

2015-10-26 Thread Jayaratna
It should end up like this:


 



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Reflect-a-score-tp182757p182758.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Text extender in repeat

2015-06-03 Thread Jayaratna
 No, we shouldn’t, since it is perfectly all right to left-align a
 syllable which has a melisma. 

Now the syllables 'the' are aligned left, but they should be moved further
left because the melisma sign that follows is barely visible.

 but I’d correct this with { \tweak self-alignment-X -0.5
 flow’r } or similar.

This code does not give the desired shift. Not even changing -0.5 to -550.

 Note the correct apostrophe ’ I used instead of
 ').

When using my .otf font the apostrohe appears correct.

http://lilypond.1069038.n5.nabble.com/file/n177447/apostrophe.png 



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Text-extender-in-repeat-tp177410p177447.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Text extender in repeat

2015-06-03 Thread Jayaratna
 It will be, if the following syllable will be successfully shifted (see
 below). But IMO it’s no problem to leave the __ out in cases like this
 (short melisma, long syllable). 

Now I see your point: moving right the following syllable.

 \once\override
 LyricText.self-alignment-X = #-0.7 

Works: thank you!

 Then that’s a peculiarity of your font. 

Shouldn't it be the normal behaviour of an otf font?

Best regards,
Andy



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Text-extender-in-repeat-tp177410p177451.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Text extender in repeat

2015-06-03 Thread Jayaratna
Dear Peter and Pierre,

thank you so much, it works. The \null solution is better IMHO.

Now before keeping this snippet online we should move left both syllables
'the', to show the melisma on the second crotchet, which was going to be my
second question.

TIA,
Andy



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Text-extender-in-repeat-tp177410p177437.html
Sent from the User mailing list archive at Nabble.com.

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


Text extender in repeat

2015-06-02 Thread Jayaratna
Dear Lilypondians,

I found a solution to a similar problem given years ago on the mailing list,
but I can't understand it. Maybe it works on earlier versions?

Here is my point, last bar extender should begin at the beginning of the
bar, not before:

\version 2.18.2
\score { 
  \new Staff \relative c'' { \time 2/1
  \repeat volta 2 {
  r4 g4 d'2. a4 bes2~
  bes  a2 g1~  
  } 
 \alternative{
   { g2 fis4 e fis1
  d'1 c2 bes}
  {g\repeatTie fis4 e fis1 }
  }
\bar |.
  }

\addlyrics { \lyricmode { 
 of Prin- ces all 
 __ _ _ 
   the __  _ flow'r. 
 Who took a- __  
 _ the __ _ flow'r. 
} }

}

http://lilypond.1069038.n5.nabble.com/file/n177410/provina.png 


TIA,
Andy



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Text-extender-in-repeat-tp177410.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Line-width and Lilypond-book

2015-01-23 Thread Jayaratna
Hi Kevin,

thanks for your advise. I have found that in fact I have to adjust the
line-width file by file. Most of the times when a file has multiple lines
lilypond-book works fine, the problem arises when I have single lines which
lilypond doesn't split in two lines but which are too full to be placed
within the line-width.

Maybe it would be nice to have a function by which to fix the total-width of
a line, including brackets and instrument names.

Thank you,
Andrea



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Line-width-and-Lilypond-book-tp170880p170915.html
Sent from the User mailing list archive at Nabble.com.

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


Line-width and Lilypond-book

2015-01-23 Thread Jayaratna
Dear Lilypondians,

I am stuck with a linewidth problem in Lilypond-book. Here is a minimal
example of my latex file:

\documentclass[a4paper]{article}
\begin{document}

Dummy text, dummy text...

\noindent \lilypondfile{exemple01.ly}

\end{document}

And my esemple01.ly:
\version 2.18.2
\score { \new Staff \relative c'' {
  \clef violin \key f \major
  a4 bes c d a bes c d
  a4 bes c d a bes c d
  a4 bes c d a bes c d
  a4 bes c d a bes c d
  a4 bes c d a bes c d
  a4 bes c d a bes c d
  a4 bes c d a bes c d
  a4 bes c d a bes c d
  a4 bes c d a bes c d
  a4 bes c d a bes c d
  a4 bes c d a bes c d

}

}


I use 
lilypond-book --latex-program=pdflatex --leftpadding=0 latexfile.lytex
and then 
pdflatex latexfile.tex

I get this:

http://lilypond.1069038.n5.nabble.com/file/n170880/2015-01-23-104544_1920x1080_scrot.png
 

Where's the problem?

Thank you,
Andrea



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Line-width-and-Lilypond-book-tp170880.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Line-width and Lilypond-book

2015-01-23 Thread Jayaratna
\documentclass[a4paper]{article}

\begin{document}

Dummy text, dummy text...

\lilypondfile[noindent]{esempioprova01.ly}

\end{document}

and

\documentclass[a4paper]{article}

\begin{document}

Dummy text, dummy text...

\lilypondfile{esempioprova01.ly}

\end{document}

give exactly the same result. I'm more worried about the right margin than
about the indent, though.

A



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Line-width-and-Lilypond-book-tp170880p170890.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Line-width and Lilypond-book

2015-01-23 Thread Jayaratna
I'd simply like it to be as large as the textwidth. I have had a good result
by manually inserting a slightly shorter line-width (2mm less than the
textwidth) in the paper block.

A



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Line-width-and-Lilypond-book-tp170880p170894.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Custos and rest

2015-01-22 Thread Jayaratna
Hi Pierre,

very helpful, as always,

Thank you,
Andrea



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Custos-and-rest-tp170860p170863.html
Sent from the User mailing list archive at Nabble.com.

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


Custos and rest

2015-01-21 Thread Jayaratna
Dear lilypondians,

Lilypond doesn't engrave the custos at the end of a line if the next line
begins with a rest. 

Can I change this behaviour? Is it a setting of break-visibility?

Thank you,
Andrea

\score{
  
  { 
\new MensuralStaff {
  \relative c'{
a b c d e f g a g a a g a a \bar  \break r1 a4 f 
}
}
  }
}






--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Custos-and-rest-tp170860.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Re:bottom of EPS output cut off (+ size of PDF files)

2015-01-16 Thread Jayaratna
I found a couple of instances in which this crop method too fails:

a) the stem of a b flat;
b) the 8 at the bottom of an octavated clef.

See attached files.

esempio3033-crop.pdf
http://lilypond.1069038.n5.nabble.com/file/n170551/esempio3033-crop.pdf  
esempio3064-crop.pdf
http://lilypond.1069038.n5.nabble.com/file/n170551/esempio3064-crop.pdf  



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Re-bottom-of-EPS-output-cut-off-size-of-PDF-files-tp170524p170551.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Re:bottom of EPS output cut off (+ size of PDF files)

2015-01-16 Thread Jayaratna
for i in *.ly; do lilycrop  $i; done



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Re-bottom-of-EPS-output-cut-off-size-of-PDF-files-tp170572p170591.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Re:bottom of EPS output cut off (+ size of PDF files)

2015-01-15 Thread Jayaratna
Hi Andrew,

thanks a lot. I am not a programmer so I couldn't have taken the workaround
to this level, you can't imagine how much work this is going to spare me. 

May I request a feature? Is there a way to insert an option for getting eps
output?

Thanks again,
Andrea



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Re-bottom-of-EPS-output-cut-off-size-of-PDF-files-tp170524p170538.html
Sent from the User mailing list archive at Nabble.com.

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


Re: bottom of EPS output cut off (+ size of PDF files)

2015-01-14 Thread Jayaratna
Hi Andrew,

this Bash is going to be VERY(!!!) useful for me, thank you VERY(!!!)
much for posting it,

Andrea



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Re-bottom-of-EPS-output-cut-off-size-of-PDF-files-tp170186p170496.html
Sent from the User mailing list archive at Nabble.com.

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


Re: bottom of EPS output cut off (+ size of PDF files)

2015-01-14 Thread Jayaratna
Hi Andrew,

I'd like to add two lines to your bash, but I need assistance:

After 

   lilypond $file 

I'd like to burts the file into multiple pdfs (one per page) and I do this
by:

   pdftk $file.pdf burst

This makes one pdf file per page with the following output:

originalpdf.pdf 

originalpdf01.pdf
originalpdf02.pdf
originalpdf03.pdf
... etc.

Can I adapt this line:

pdftops -eps $file.pdf

to manage the multiple single pages pdf?

Thank you,
Andrea



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Re-bottom-of-EPS-output-cut-off-size-of-PDF-files-tp170186p170497.html
Sent from the User mailing list archive at Nabble.com.

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


Music line in a Latex table

2014-12-29 Thread Jayaratna
Dear Lilypondians,

I need to place a music line in a Latex table so that any measure in the
music has the same width of the correspondent cell in the table. 

I tried placing single lilypond files in the table, but because they contain
different objects (minims, different clefs, whole notes etc.) their
dimensions are different, and scaling them makes the music line look odd and
not in line.

I could place a single lilypond file in a multicolumn row, but I really
don't know how to get the measures the same width as the table cells.

Maybe I should just export the table and the music as svg files and adapt
the music with inkscape?

Any other suggestions on how to handle this problem?

Thank you,
Andrea



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Music-line-in-a-Latex-table-tp169878.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Music line in a Latex table

2014-12-29 Thread Jayaratna
Dear Brian,

thanks for your suggestion. Actually for mixing music and text I would
prefer equally spaced notes whatever their value, which is the opposite of
proportional spacing. I usually do a trick by setting all note figures to an
octave.

Thank you,
Andrea





--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Music-line-in-a-Latex-table-tp169878p169891.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Music line in a Latex table

2014-12-29 Thread Jayaratna
Hi Pierre,

yes, this is helpful. I will still have to adjust the page dimensions. 

But the real problem is that in any case these examples will not be
vertically centered (lilypond makes adjustments according to flags, clefs
and anything falling above or below the stafflines), so I will have to work
on the svg file in any case.

Question: is there a way to set any lenght relative to an ex value taken
from the latex file?

Thank you,
Andrea



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Music-line-in-a-Latex-table-tp169878p169892.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Unresolvable rest collision?

2014-12-27 Thread Jayaratna
Simon Albrecht-2 wrote
 It’s only natural that mensural notation follows wholly different 
 conventions than 19th/20th century typesetting standards


The (maybe ot) point was that the rest position can have a meaning. Incipits
are quite a common feature in modern notation.

Cheers,
A



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Unresolvable-rest-collision-tp169585p169768.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Unresolvable rest collision?

2014-12-26 Thread Jayaratna
Just a few days ago I had to correct the following incipit:

http://lilypond.1069038.n5.nabble.com/file/n169753/dentestui01.png 

In the original the longae rests at the beginning of the piece indicate that
the Modus Longarum is imperfect, thus:

http://lilypond.1069038.n5.nabble.com/file/n169753/dentestui02.png 



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Unresolvable-rest-collision-tp169585p169753.html
Sent from the User mailing list archive at Nabble.com.

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


Re: translation of divisi lyrics

2014-12-24 Thread Jayaratna
Maybe something like 'testi alternativi', but I'm sure you could find
something better.



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/translation-of-divisi-lyrics-tp169671p169678.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Unresolvable rest collision?

2014-12-24 Thread Jayaratna
Phil Holmes-2 wrote
 According to typesetting rules (see Behind Bars by Elaine Gould, for 
 example) rests should remain consistently placed with respect to staff 
 lines. 

I don't know if it is mentioned by Gould or others but the placement of
rests sometimes is not just a matter of design balance, but can be
meaningful per se.

A



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Unresolvable-rest-collision-tp169585p169680.html
Sent from the User mailing list archive at Nabble.com.

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


Setting note durations

2014-11-21 Thread Jayaratna
Dear Lilypondians,

I can't find anything about this in the Notation Manual, except this line:

breveTP = #(ly:make-duration -1 0 3/2)

Which makes the duration of a breve 3/2 its usual value. Where do I find a
table with all the other note durations names (is it something like
crotchetTP, quaverTP, minimTP?). 

And do I set these variables in a context?

Thank you,
Andrea



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Setting-note-durations-tp168862.html
Sent from the User mailing list archive at Nabble.com.

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


Re: bottom of EPS output cut off

2014-11-21 Thread Jayaratna
It's a known bug:

http://code.google.com/p/lilypond/issues/detail?id=720

I found this workaround:

I save my example as a pdf. Then I crop it typing this in the commandline

pdftops -eps myfile.pdf

cat filename.eps | ps2eps  filename_cut.eps


HTH
Andrea



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/bottom-of-EPS-output-cut-off-tp168873p168878.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Setting note durations

2014-11-21 Thread Jayaratna
Thank you, Graham and Guoguocuozuoduo,

I didn't get it was a setup variable (maybe working late at night doesn't
help) and finally I found make-duration in the manual (maybe google doesn't
work well at night either).
So it's just a variable, but wonderfully it works like a new duration:

\version 2.18.2

breveTP = #(ly:make-duration -1 0 3/2) %brevis Tempus Perfetum
minimaPP = #(ly:make-duration 1 0 2/3) %minima Prolatio Perfecta

notesa = { \time 3/1  a\breveTP  g1 g g a\minimaPP a a a a a a a a }
notesb = { \time 3/1 a1 a a a\minimaPP a a a a a a a a g1 g g }
\score{ 

\new Staff   \notesa 
 \new Staff \notesb 

 }

Cool,
thank you!



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Setting-note-durations-tp168862p168883.html
Sent from the User mailing list archive at Nabble.com.

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


Double incipit (was midline system bracket)

2014-11-19 Thread Jayaratna
Dear Lilypondians,


I am trying to adapt this code by Pierre to my needs:

http://lists.gnu.org/archive/html/lilypond-user/2012-05/msg00379.html

So far I have made this:

http://lilypond.1069038.n5.nabble.com/file/n168820/doubleincipit.png 

Three things I need to adjust:

1) the brace needs to be a bracket and to be properly repositioned;
2) the second 'incipit' is too large compared to the first (which is made by
a markup code inside the instrument name), I can make the first look like
the second but I need the second to look like the first instead;
3) the '8' under the octave treble clefs in the second half of the example
are shifted (and this could be a small bug: if you hide the clefs the 8s
remain).

I am attacing my doubleincipit.ly
doubleincipit.ly
http://lilypond.1069038.n5.nabble.com/file/n168820/doubleincipit.ly  

Any help welcome,
thank you,
Andrea



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Double-incipit-was-midline-system-bracket-tp168820.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Double incipit (was midline system bracket)

2014-11-19 Thread Jayaratna
Awesome, but I have more than 50 such snippets to aggregate...



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Double-incipit-was-midline-system-bracket-tp168820p168823.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Double incipit (was midline system bracket)

2014-11-19 Thread Jayaratna
It should work. I don't see any such extremes in the music I need to prepare,
but, for the record, look at what could happen:
http://lilypond.1069038.n5.nabble.com/file/n168826/multipleInsipit.png 
doubleincipit-2.ly
http://lilypond.1069038.n5.nabble.com/file/n168826/doubleincipit-2.ly  



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Double-incipit-was-midline-system-bracket-tp168820p168826.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Double incipit (was midline system bracket)

2014-11-19 Thread Jayaratna
Sorry again, how do you get line breaks?
This does not help

\markuplist {
  \justified-lines { \concat {
\myincipit
\myincipit}
}
}





--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Double-incipit-was-midline-system-bracket-tp168820p168827.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Double incipit (was midline system bracket)

2014-11-19 Thread Jayaratna
A lot!!! Hope my publisher will not change my line-width, but today a big gap
was filled.
Time to enter the music.

Thank you so much, Pierre

Andrea



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Double-incipit-was-midline-system-bracket-tp168820p168830.html
Sent from the User mailing list archive at Nabble.com.

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


Midline system bracket

2014-11-18 Thread Jayaratna
Dear Lilypondians,

is it possible to display a system bracket midline?

Here is a working example:


\version 2.18.2

global = { \override Staff.Clef.full-size-change = ##t
   \override Score.BreakAlignment #'break-align-orders = #(
   make-vector 3 '(
   staff-bar
   clef
   key-signature
   time-signature
 ) ) 
   \set Staff.timeSignatureFraction = 2/2
  
  
  
}
\score {
\new StaffGroup 
  
  
  \new Staff \relative c' { \global \time 2/2 \clef violin e1 \bar ||
   
   
\stopStaff \time 1/64 s64 \bar  \noBreak %%%white space after the example
\startStaff \clef petrucci-c1 s64 \bar \noBreak %%%new incipit
\stopStaff s64^\markup{\center-align Here}\bar| \startStaff %%%new example

   \time 2/2  \clef violin a4 b c d }
  
  
  \new Staff \relative c' { \global \time 2/2 \clef violin e1 \bar ||
   
   
\stopStaff \time 1/64 s64 \bar  \noBreak %%%white space after the example
\startStaff \clef petrucci-c1 s64 \bar \noBreak %%%new incipit
\stopStaff s64 \bar| \startStaff %%%new example

   \time 2/2  \clef violin a4 b c d }


}


Thank you for your suggestions,

Andrea




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Midline-system-bracket-tp168813.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Midline system bracket

2014-11-18 Thread Jayaratna
Thank you, Pierre,

Very helpful, as always! :D
I'll try to adapt that snippet and get back if I have problems.

Andrea



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Midline-system-bracket-tp168813p168815.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Midline system bracket

2014-11-18 Thread Jayaratna
Yes, I need help, sorry.

How would you make a bracket instead of a brace in this function of yours:

braceBar =
#(define-music-function (parser location bracExt)(number?)

  (define ((braceBarLine markup) grob)
(ly:stencil-combine-at-edge (ly:bar-line::print grob)
  X LEFT (grob-interpret-markup grob markup) 0.4))

  (define braceMarkup
(make-line-markup
  (list
(make-with-dimensions-markup '(0 . 0) '(0 . 0)
  (make-translate-markup ;(cons 0 ext)
(cons 0 (+ 0.2 (/ braceExt -10)))
(make-left-brace-markup (+ braceExt 20)))
  #{
  \once\override Score.BarLine #'hair-thickness = #'1.6
  \once \override Staff.BarLine #'stencil = #(braceBarLine braceMarkup)
  \bar |
  \move
  \once\override Score.RehearsalMark #'self-alignment-X = #LEFT
  #})

Thank you,
Andrea



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Midline-system-bracket-tp168813p168816.html
Sent from the User mailing list archive at Nabble.com.

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


Forcing Litlypond-book

2014-11-17 Thread Jayaratna
Dear members,

I have a group of .ly files that I need to update because o some changes I
have made on a layout file which is included in some files of my document
(not all of them). Executing lilypond-book gives no updating, because the
files themselves have not been changed. Is there a way to force
Lilypond-book processing all the files without having to clear my folder of
all the generated files all the times?

thank you,
A



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Forcing-Litlypond-book-tp168763.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Forcing Litlypond-book

2014-11-17 Thread Jayaratna
Thank you, Jacques, touch is enough for my needs at present.

Andrea



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Forcing-Lilypond-book-tp168763p168768.html
Sent from the User mailing list archive at Nabble.com.

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


Tweaking key signature spacing

2014-11-07 Thread Jayaratna
Dear Lilyfriends,

In the following code I need to reduce the space between the clef and the
key signature (with scaled units).
Thanks for your help,
A

\version 2.18.2
mytimesigv = { \override Staff.TimeSignature.stencil = #(lambda (grob) 
 (grob-interpret-markup grob
   #{
 \markup \concat {
 \musicglyph #timesig.neomensural44
   \lower #.9 {  2 } 
 } 
   #})) }
discantusNotes = {
  \relative c''  {
\override Staff.Clef.full-size-change = ##t
\override Score.BreakAlignment #'break-align-orders = #(
   make-vector 3 '(
   staff-bar
   clef
   key-signature
   time-signature
 ) )
\cadenzaOn
\key f \major \clef petrucci-c1 
\mytimesigv
\scaleDurations 1/64 {
 g\breve g  c,1 \undo \hide Staff.BarLine \bar|| s32
\clef petrucci-c3 \key d \minor  \time 2/2 r\longa c\breve c  f,1
\bar||
  
  }
  }
}
\score {
  
  \new MensuralVoice = discantusNotes 
  \discantusNotes  
  
  
  \layout {
\context {
  \Score
  \omit BarNumber
   }

  }
}
http://lilypond.1069038.n5.nabble.com/file/n168516/2014-11-07-200322_1024x600_scrot.png
 



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Tweaking-key-signature-spacing-tp168516.html
Sent from the User mailing list archive at Nabble.com.

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


How to prevent natural signs from being printed when the key signature changes

2014-11-06 Thread Jayaratna
Dear Lilyfriends,
I am following the steps from the notation manual at this location:
http://lilypond.org/doc/v2.18/Documentation/notation/displaying-pitches#key-signature
My code is:

\version 2.18.2
\score { 
\relative c'  {
\key f \major c d e f 
\set Staff.printKeyCancellation = ##f
\clef soprano \key c \major g a g f 
  }
}

But I still get the natural sign printed.
http://lilypond.1069038.n5.nabble.com/file/n168456/2014-11-06-170533_1024x600_scrot.png
 
Am I doing something wrong or is this a bug?
Thank you,
A






--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/How-to-prevent-natural-signs-from-being-printed-when-the-key-signature-changes-tp168456.html
Sent from the User mailing list archive at Nabble.com.

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


Re: How to prevent natural signs from being printed when the key signature changes

2014-11-06 Thread Jayaratna
Ok, that one was a dummy example I made to see if the 'error' happened in a
context different from the one I have in my file. Maybe it would just be
good to add Trevor's explanation to the website.

I actually wanted to copy the following score: I just decided to keep the f
key. 

http://lilypond.1069038.n5.nabble.com/file/n168461/2014-11-06-183422_1024x600_scrot.png
 

Thank you,
A



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/How-to-prevent-natural-signs-from-being-printed-when-the-key-signature-changes-tp168456p168461.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Where to Download the New Music Fonts?

2014-11-02 Thread Jayaratna
Very interesting developements here. I love Lilypond!

I am fine with the default font at the moment, just wondering if any of
these fonts has specific improvements for ancient notation engraving.

Thank you,
A



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Where-to-Download-the-New-Music-Fonts-tp165035p168293.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Where to Download the New Music Fonts?

2014-11-02 Thread Jayaratna
Let alone the music spacing, I think the diamond note heads are fare too
small, in general. 
This is taken on a 12pt score magnified at 180%, default lilypond engraving:


http://lilypond.1069038.n5.nabble.com/file/n168304/2014-11-02-180946_1024x600_scrot.png
 

Look at the quavers flags, and compare the diamond noteheads and the
breves.The latter colour is much heavier. 
See the tempo mark on the bottom staff too. 
The dots are too big. 

I don't know if it's an unbalanced font or if some work has to be done on
the mensural staffvoice contexts. 

For mensural music parts (which are the most common case) there should be a
way to turn off the lilypond proportional music spacing too (which again is
not related to the font itself, I think).  




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Where-to-Download-the-New-Music-Fonts-tp165035p168304.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Where to Download the New Music Fonts?

2014-11-02 Thread Jayaratna
Interesting stuff, I should try it. I guess I'll wait for the 2.19 version to
become stable 
 and try some different fonts.



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Where-to-Download-the-New-Music-Fonts-tp165035p168305.html
Sent from the User mailing list archive at Nabble.com.

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


Lilyglyphs

2014-10-31 Thread Jayaratna
I am using Urs Liska's LilyGlyphs on a LateX document, and so far it worked
wonderfully.

Finally now I need to insert something more complex than the predefined
commands, and I don't know where to start.

Anyone could tell me how to make a minim with mensural head?

I need to understand how to draw the stem:

\lilyGlyph[scale=2.25, raise=.75]{noteheads.s1neomensural}

I will also need to know how to draw the stemflags of quavers, semiquavers
etc.

Thank you,
A 



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Lilyglyphs-tp168113.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Lilyglyphs

2014-10-31 Thread Jayaratna
Dear Urs,
thank you for helping me in this. 
I have a TexLive distro installed on a Lubuntu os.
Thanks,
Andrea



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Lilyglyphs-tp168113p168187.html
Sent from the User mailing list archive at Nabble.com.

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


Can I \markup \concat more than one file in a row?

2014-10-29 Thread Jayaratna
Dear Lilyexperts,

I have a series of short scores that I need to print all in a row, tight to
each other but with a little white space in between, more or less like this:

http://lilypond.1069038.n5.nabble.com/file/n168064/2014-10-29-165843_1024x600_scrot.png
 


I see it is possible to concat several scores in a \markup environment, like
this:




But I can't get it to work if I use an \include file.ly instead of my
\notes variable. What's wrong?

Thank you,
Andrea



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Can-I-markup-concat-more-than-one-file-in-a-row-tp168064.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Can I \markup \concat more than one file in a row?

2014-10-29 Thread Jayaratna
Just experimenting. If I write:



it works. But this gives errors:



To get it working I have to move the layout block:


But I can't move my layout block inside my included files. Is this the
problem?



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Can-I-markup-concat-more-than-one-file-in-a-row-tp168064p168067.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Can I \markup \concat more than one file in a row?

2014-10-29 Thread Jayaratna
Hi JM,

I edited out the  tags from both my entries, 
thanks



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Can-I-markup-concat-more-than-one-file-in-a-row-tp168064p168071.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Can I \markup \concat more than one file in a row?

2014-10-29 Thread Jayaratna
Pierre,

thank you for your solution. I understand how it works, and it is brilliant
and simple.

As far as I understand it is not possible to include a working (one which
gives a pdf output when run) lilypond file in a \markup environment. This
means I will have to edit all my scores and subsequently I will have to make
an output file for each of them and a separate output file for my score row.
Plus I will have to further extrapolate my incipits from the first file.

It's quite a lot of work, I hoped it would have been possible to just
include my files without having to edit them so heavily.

By the way look at the new documentation for making incipits, with the 2.18
version of lilypond sometimes incipits created as a filename are badly
centered, due to some change in the boxing engine I guess. 

Thank you,
Andrea



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Can-I-markup-concat-more-than-one-file-in-a-row-tp168064p168076.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Can I \markup \concat more than one file in a row?

2014-10-29 Thread Jayaratna
By the way how do I get linebreaks inside a \concat of several scores?



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Can-I-markup-concat-more-than-one-file-in-a-row-tp168064p168077.html
Sent from the User mailing list archive at Nabble.com.

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


Double barline with white filling

2014-10-29 Thread Jayaratna
Dear Lilyexperts,

can I customize a double barline \bar|| so that the space between the two
lines is white and not transparent? This would make two consecutive bars to
appear as separate file.

Thank you,
Andrea



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Double-barline-with-white-filling-tp168080.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Double barline with white filling

2014-10-29 Thread Jayaratna
Hi Pierre,

Yes, I guess this is the easiest way to have Lilypond setting the line
breaks.
I just tweaked a little your code, 

gap = \mark\markup { 
  \with-color #white
  \with-dimensions #'(0 . 0) #'(0 . 0)
 \filled-box #'(-.25 . .25) #'(-5.5 . 0) #0
}

and removed %\override BarLine.kern = #9.7 

to get it working like a default double barline.

Now I can add as many bars as I want and have lilypond calculating the line
breaks and making several same-width lines.

Thank you so much!!!
Andrea



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Double-barline-with-white-filling-tp168080p168083.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Double clef (canon)

2014-10-12 Thread Jayaratna
Hi Pierre,

I guess your suggestion should better the note spacing. I have to experiment
on it though.

Thank you,
Andrea



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Double-clef-canon-tp167389p167447.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Double clef (canon)

2014-10-12 Thread Jayaratna
Hi Harm,

I don't really have a personal setup for mensural music. Recently I begun a
project that involves a lot of mensural notation, therefore I am still
learning and noticing . Usually I adjust flaws when they occur, just within
the notation rather than on the layout level, but I guess this is a flaw
inherent on my way of working with Lilypond, as I have never learnt it in a
theoretical and comprehensive way, adjusting my learning to specific needs
as per occurrence.

So far I think mensural and neomensural notation fonts to be a little
unbalanced. The diamond shaped noteheads are too small, in my opinion, while
the square shaped noteheads are generally good. I usually increase noteheads
size, but not as much as I would, as the risk is getting breves and longae
noteheads too big. I think there should be a way to selectively increase
noteheads sizes, but I still have to sort out the problem. Actually, before
consolidating my opinion I should try see more of it in print: so far I am
just in the phase of making drafts. I also usually increase stems thickness,
but, again, I should evaluate this on paper rather than on screen. Longae
stems are too short, generally speaking (why are they built in the glyph???
Not that I dislike it, actually it solved so many issues I had!). The real
pain comes with ligatures: I have to revert the noteheads size to default
whenever I want to type ligatures, with the unnerving result that ligatures
look smallish, especially compared to squared noteshapes. On the other side,
if I don't revert noteheads to their normal sizes, spacing within ligatures
is completely scattered. Obtaining black or half coloured ligatures is also
quite painful, but I still have to study the problem a little bit closer, as
I guess changing the font to black mensural should partly overcome the
issue. 

Again, as for the font balance, I have sometimes to mix mensural and
neomensural or petrucci shapes, especially for clefs and time signature
symbols. Probably this is due to the fact that it is impossible to have a
consistent classification of these glyphs, because I think printers of
various times and locations used a variety of mixed shapes. But, again, a
bass mensural clef is really too small, compared, say, to a petrucci C clef.
Overall, I feel the mensural part of our feta font works better in giving
the idea of a handwritten score rather than of a printed one. You also
noticed dots are generally too big, and some of the alteration symbols are
too small. 

Finally, the available repertoire of time signature symbols is not complete.
I had to type a piece with many proportional changes and I finally decided
to include in my scores a separate file with 20 custom time signature
commands, some of them being already implemented, others being made by
adding fractions to existing glyphs. Thankfully I haven't yet found a score
with a double crossed time signature symbol (like a O with an X above it),
but I feel this kind of symbol could be easily added to the font. In typing
proportional music I prefer to use a standard 2/1 time, my custom time
signature symbols and \scaleDurations accordingly. So far it has been the
easiest way: still I remind myself that I have never planned one of these
projects globally from scratch, but I am guilty of always working on problem
by problem occurrence solutions.

These are some of the features I am introducing so far in my mensural
typewriting, warning that they still have to be fine tuned when proofed on
paper (and printed at different sizes too):

\override Stem.neutral-direction = #up
\override NoteHead #'font-size = #2 
\override Dots #'font-size = #-2  
\override Stem.thickness = #2.0

I'd also like to hear from yours and others opinion on the topic.

Andrea



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Double-clef-canon-tp167389p167449.html
Sent from the User mailing list archive at Nabble.com.

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


Double clef (canon)

2014-10-10 Thread Jayaratna
Dear Lilyexperts,

I have to reproduce the following part. 

I have no idea on how to type the double clef, and I can't figure out
anything from the documentation.

Any suggestion?

Thank you,
A

http://lilypond.1069038.n5.nabble.com/file/n167389/2014-10-10-210649_1024x600_scrot.png
 



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Double-clef-canon-tp167389.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Double clef (canon)

2014-10-10 Thread Jayaratna
Dear Harm,

yes, there is a breve rest after the first clef in the first line. It means
the part with that clef have to wait one breve, while the part following the
second clef starts first.
Actually that rest is the reason why I did not choose to just make a new
clef with a \markup \concat glyph.

Thank you,
Andrea



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Double-clef-canon-tp167389p167391.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Double clef (canon)

2014-10-10 Thread Jayaratna
Hello Harm,

I am going to hack your code further to adapt it to my usual mensural
layout. But it works. I need time to understand everything you've made but
definitely thank you. As far as I got it, you defined a commando for adding
a clef next to the original, and another one to add the cleff after the
breve rest.

Reading your comments I have to say that still the layout of mensural music
is quite poor. I usually increase the notehead sizes, but breves and longae
become too big. I also increase the stem thickness. I don't feel spacing to
be too bad, though, but I neved had to type scores, luckily, just parts.

By the way this canon is by Thomas Morley, which feels funny regarding your
nickname.

Thank you so much,
Andrea



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Double-clef-canon-tp167389p167411.html
Sent from the User mailing list archive at Nabble.com.

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


lilypond-book cuts out the bottom or top parts

2014-10-02 Thread Jayaratna
Dear lily-experts,

I wonder if this is a known issue. The phenomenon happens sistematically
when I don't have objects down to the first line of my staves or up at the
top.

Suggestions?

http://lilypond.1069038.n5.nabble.com/file/n167060/2014-10-02-183022_1024x600_scrot.png
 



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/lilypond-book-cuts-out-the-bottom-or-top-parts-tp167060.html
Sent from the User mailing list archive at Nabble.com.

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


Fraction with no line

2014-09-11 Thread Jayaratna
Dear lilyexperts,,

is there a function for a fraction without a separation line to be used in
\markup?

Something like:
\markup { \fractionwithnohline 21 5 }  


Thank you,
A



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Fraction-with-no-line-tp166333.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Fraction with no line

2014-09-11 Thread Jayaratna
http://lilypond.1069038.n5.nabble.com/file/n166341/frac.png 

Thank you all for your nice answers, I wonder if I will ever be able to
program these codes so easily as you. 

This is the difference between the suggested codes. Which one would you use?

A



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Fraction-with-no-line-tp166333p166341.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Use my roman font digits for time signature

2014-09-05 Thread Jayaratna
Dear Simon,

thank you for your answer. Your suggestion works, but I need to insert the
change in the middle of a part. If I put your override code in the \with
part, it overrides also my neomensural initial time signature.

\version 2.18.2

\new Staff  
  { \relative c' { %Tenor
\override Staff.TimeSignature.style = 
#'neomensural \time 4/1  
\hide Staff.BarLine
\set Staff.timeSignatureFraction = 2/2
\scaleDurations 2/1 {
\clef alto
g\longa } 

\set Staff.timeSignatureFraction =
2/1 
\scaleDurations 1/1 {
d\breve } }
  }



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Use-my-roman-font-digits-for-time-signature-tp166073p166085.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Use my roman font digits for time signature

2014-09-05 Thread Jayaratna
Dear Phil, 

this is simple and perfectly working. I'm also trying to magnify it a little
adding part of Simon's code \once \override TimeSignature.font-size = 3 ,
but my proportion does not show any increase in size.

Thank you,
A



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Use-my-roman-font-digits-for-time-signature-tp166073p166089.html
Sent from the User mailing list archive at Nabble.com.

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


Use my roman font digits for time signature

2014-09-04 Thread Jayaratna
Dear members,

I'd like to use my roman font digits for proportional symbols in a
Renaissance score. Ho do I replace the Feta font digits with my Roman
Garamond ones?

I've looked at this post, but it does not work with replacing my font:

http://lilypond.1069038.n5.nabble.com/Change-time-signature-font-td146251.html

Thank you,
A



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Use-my-roman-font-digits-for-time-signature-tp166073.html
Sent from the User mailing list archive at Nabble.com.

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


Custom time signature symbols

2014-09-02 Thread Jayaratna
Dear Lilypond experts,

I need to type a series of examples of mensural music, in which three parts
(Cantus, Altus  Bassus) contain 3 semibreves per bar, one part (Tenor)
contains three breves per bar. I am notating it using 3/1 and 6/1 fractions,
but I would like to use timesig.neomensural98 (stroked O) and
timesig.neomensural32 plus number 2 (O2) instead. 

How would you do it?

So far I have this working example, and thank you for your help.

AM


\include paper.ly
\score{   

\new StaffGroup {
\new Staff {\relative c'' { %Cantus 
\time 3/1
%\set Staff.timeSignatureFraction = 3/1
%\scaleDurations 4/1 
b2 c b c4 d e4. d8 c4 g }}


\new Staff {\relative c' { %Alto
\time 3/1
%\set Staff.timeSignatureFraction = 3/1
%\scaleDurations 2/1
\clef alto 
d2 e g4. f8 e4 d c b c d8 e }}


\new Staff {\relative c' { %Tenor
\time 3/1
\set Staff.timeSignatureFraction = 6/1
\scaleDurations 1/2 {
\clef tenor
 g\longa.} }}


\new Staff {\relative c { %Bassus
\time 3/1
\set Staff.timeSignatureFraction = 6/1
\scaleDurations 1/2 { 
\clef bass
g1 c  e2.d4 c2 b c g c b } }}


  } }




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Custom-time-signature-symbols-tp166005.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Custom time signature symbols

2014-09-02 Thread Jayaratna
Dear Pierre,

thank you, it works wonderfully. I just modified the tenor like this:

\new Staff \with {
\override TimeSignature.stencil = #(lambda (grob)
 (grob-interpret-markup grob
   #{
 \markup\concat {
 \musicglyph #timesig.neomensural32
 \lower #.8 \magnify #1  2
  }
   #}))
  }
  { \relative 


For mensural proportions I prefer to have a normal text font number.

Thank you very much!
A



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Custom-time-signature-symbols-tp166005p166010.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Custom time signature symbols

2014-09-02 Thread Jayaratna
Schneidy wrote
 Forget \magnify #1, you do not neet it.
 Cheers,
 Pierre


Of course! 



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Custom-time-signature-symbols-tp166005p166013.html
Sent from the User mailing list archive at Nabble.com.

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


Lilyglyphs dummy

2014-08-19 Thread Jayaratna
Dear members,

I am not sure this question belongs to this forum. I am using LilyGlyphs on
a LateX document, and so far it worked wonderfully.

Finally now I need to insert something more complex than the predefined
commands, and I don't know where to start.

Anyone could tell me how to make a minim with mensural
head?\lilyGlyph[scale=2.25, raise=.75]{noteheads.s1neomensural}f

I need to understand how to draw the stem:

\lilyGlyph[scale=2.25, raise=.75]{noteheads.s1neomensural}

Thank you,
A 



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Lilyglyphs-dummy-tp165643.html
Sent from the User mailing list archive at Nabble.com.

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


Dotted breve (and longa etc.)

2014-08-18 Thread Jayaratna
Dear members,

how do I print a dotted beve? I need it for a mensural ligatura.

Thank you,
AM



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Dotted-breve-and-longa-etc-tp165612.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Dotted breve (and longa etc.)

2014-08-18 Thread Jayaratna
Yes, 

c\breve. 

gives out an error.

A



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Dotted-breve-and-longa-etc-tp165612p165622.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Dotted breve (and longa etc.)

2014-08-18 Thread Jayaratna
Dear Simon,

I updated my system and now it works!

Thank you!

A



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Dotted-breve-and-longa-etc-tp165612p165624.html
Sent from the User mailing list archive at Nabble.com.

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


Zigzag slurs

2013-09-16 Thread Jayaratna
Dear subscribers,

I need to make something similar to this. Any clues?

Thanks for your help,
A

http://lilypond.1069038.n5.nabble.com/file/n150880/zigzag.jpg 



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Zigzag-slurs-tp150880.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Zigzag slurs

2013-09-16 Thread Jayaratna
Dear Pierre,

thank you, this is exactly what I needed. I still have to decide if I want
the thicker or the thinner one.

A



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Zigzag-slurs-tp150880p150886.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Zigzag slurs

2013-09-16 Thread Jayaratna
Dear Urs,

i don't know how to say it in English: on a flute it should be a kind of
staccato made with no tongue, using the diaphragm, almost like a rithmical
vibrato. I hope it makes sense.

A



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Zigzag-slurs-tp150880p150885.html
Sent from the User mailing list archive at Nabble.com.

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


Script priority

2011-10-01 Thread Jayaratna

Dear subscribers,
this issue will sound already answered, but I couldn't find anything on
searching, so, please, forgive me in this case.

In the following small example I'd like the staccatissimo to appear outside
the slur. I tried several \override scripts, but with no results.

Thank you for your help,
Andrea

http://old.nabble.com/file/p32574493/prova.pdf prova.pdf 

\version 2.12.3
\score {
\relative c'  { 
\time 3/4 \key g \major \clef treble 
g'8-|( g4.) d'4 
  }
  }
-- 
View this message in context: 
http://old.nabble.com/Script-priority-tp32574493p32574493.html
Sent from the Gnu - Lilypond - User mailing list archive at Nabble.com.


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


Expressive marks with parentheses

2011-07-20 Thread Jayaratna

Dear members,

I need to print parentheses around a Staccatissimo mark. I found how to
create dynamics with parentheses in Lilypond snippets. I think it's very
similar with other expressive marks, but can't find how to do it.



Thank you for your help,
Andrea
-- 
View this message in context: 
http://old.nabble.com/Expressive-marks-with-parentheses-tp32097639p32097639.html
Sent from the Gnu - Lilypond - User mailing list archive at Nabble.com.


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


Expressive marks with parentheses

2011-07-20 Thread Jayaratna

Dear members,

I need to print parentheses around a Staccatissimo mark. I found how to
create dynamics with parentheses in Lilypond snippets. I think it's very
similar with other expressive marks, but can't find how to do it.



Thank you for your help,
Andrea
-- 
View this message in context: 
http://old.nabble.com/Expressive-marks-with-parentheses-tp32097635p32097635.html
Sent from the Gnu - Lilypond - User mailing list archive at Nabble.com.


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


Re: Italic bar numbers

2011-02-07 Thread Jayaratna

Thank you so much, this solves my problem!
A

Mike Solomon-2 wrote:
 
 On Feb 7, 2011, at 12:09 PM, Jayaratna wrote:
 
 
 Dear members,
 
 I have been asked to print bar numbers in italic fontface. 
 I checked the documentation and this forum, but if I've not missed it, i
 could find no help.
 Any suggestion?
 
 Thanks,
 Andrea
 
 
 \relative c' { \override Score . BarNumber #'stencil =
 #(lambda (grob)
   (grob-interpret-markup grob (markup #:italic (ly:grob-property grob
 'text
 \repeat unfold 40 { a b c d }
 }
 
 Cheers,
 MS
 
 
 ___
 lilypond-user mailing list
 lilypond-user@gnu.org
 http://lists.gnu.org/mailman/listinfo/lilypond-user
 
 

-- 
View this message in context: 
http://old.nabble.com/Italic-bar-numbers-tp30865628p30867952.html
Sent from the Gnu - Lilypond - User mailing list archive at Nabble.com.


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Italic bar numbers

2011-02-07 Thread Jayaratna

Dear members,

I have been asked to print bar numbers in italic fontface. 
I checked the documentation and this forum, but if I've not missed it, i
could find no help.
Any suggestion?

Thanks,
Andrea

-- 
View this message in context: 
http://old.nabble.com/Italic-bar-numbers-tp30865628p30865628.html
Sent from the Gnu - Lilypond - User mailing list archive at Nabble.com.


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Multi-page markup: programming error

2010-11-21 Thread Jayaratna

Dear members,

this seems to be something that has not been discussed yet.

I am writing a Postface in two languages, so I made my own titles (using
\markup) and put my texts inside a \markuplines section at the end of my
score.

Lilypond says:  programming error: FT_Load_Sfnt_Table (): error.
http://old.nabble.com/file/p30271258/smex.ly smex.ly 
Any workaround?

PS Lilypond-book  would not be a solution, because I can't get Latex to
handle some fonts I need in my score.
-- 
View this message in context: 
http://old.nabble.com/Multi-page-markup%3A-programming-error-tp30271258p30271258.html
Sent from the Gnu - Lilypond - User mailing list archive at Nabble.com.


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Lyrics slips under quotations from other instruments

2010-10-22 Thread Jayaratna

Thank you very much, I didn't find this in the documentation.
Maybe I should have looked elsewhere rather than in 'Score and parts'.

Thank you again,
Andrea


Reinhold Kainhofer wrote:
 
 Am Donnerstag, 21. Oktober 2010, um 15:54:27 schrieb Jayaratna:
 I am asked to insert a few bars of the first violin part on a soprano
 staff
 to help the singer when there are many measures of silence before his/her
 entrance.
 
 These notes are called cue notes. Please look up the section on cue
 notes in 
 the documentation, in particular the use of \cueDuring (instead of 
 \quoteDuring):
 
 \cueDuring #violinoa #UP { R2.*3^Violino 1 }  }
 
 
 Cheers,
 Reinhold
 -- 
 --
 Reinhold Kainhofer, reinh...@kainhofer.com, http://reinhold.kainhofer.com/
  * Financial  Actuarial Math., Vienna Univ. of Technology, Austria
  * http://www.fam.tuwien.ac.at/, DVR: 0005886
  * LilyPond, Music typesetting, http://www.lilypond.org
 
 ___
 lilypond-user mailing list
 lilypond-user@gnu.org
 http://lists.gnu.org/mailman/listinfo/lilypond-user
 
 

-- 
View this message in context: 
http://old.nabble.com/Lyrics-slips-under-quotations-from-other-instruments-tp30019771p30029963.html
Sent from the Gnu - Lilypond - User mailing list archive at Nabble.com.


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Lyrics slips under quotations from other instruments

2010-10-21 Thread Jayaratna

Dear all,

I am asked to insert a few bars of the first violin part on a soprano staff
to help the singer when there are many measures of silence before his/her
entrance.

I do this by adding in my vocal part:

   
   {\tiny   \quoteDuring #violinoa { s2.*3 }  }
 \\
   {\normalsize R2.*3^Violino 1}



The problem is that lyrics slip under the violin part which is quoted on the
voices staffs. I don't want to introduce _ s in my texts, because this
would affect the score, where I obviously don't want quotations. 

I think that the best solution for this would be to have a command to be put
in the violin music that prevents Lyrics to be printed under it. Is there
such a command?

Thank you very much for your help,

Andrea
-- 
View this message in context: 
http://old.nabble.com/Lyrics-slips-under-quotations-from-other-instruments-tp30019771p30019771.html
Sent from the Gnu - Lilypond - User mailing list archive at Nabble.com.


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


\partial with full measure rests

2010-09-07 Thread Jayaratna

Dear all,

I have been checking old posts for this same problems, but my case is
slightly different, and I would like to ask your opinion/advice on this.

I have a score ending with a partial measure, and some parts do not play on
that measure.

For instance part a ends like this:

\time 2/2 
 g2 fis4. g8 \bar ||
\time 3/4 \partial 2
 g2^Tous \bar ||

part b ends like this:

\time 2/2
R1 \bar ||
\time 3/4 \partial 2
R2 \bar ||

Lilypond gives a warning, and when I process part b the rest in the last
measure is not shown. If I use a normal r2 rest, the result is that I cannot
hide part b in the full score, even if I want it to be hidden (because of
its rests).

I hope this is not too confusing, I hope to get this last measure working.

Thank you,
Andrea
Venice, Italy




-- 
View this message in context: 
http://old.nabble.com/%5Cpartial-with-full-measure-rests-tp29641615p29641615.html
Sent from the Gnu - Lilypond - User mailing list archive at Nabble.com.


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: New piece header in the same score

2010-07-26 Thread Jayaratna

Thanks again for all your valuable advice.

Andrea


Xavier Scheuer wrote:
 
 2010/7/25 Jayaratna jayara...@gmail.com:
 
 Dear Xavier,

 thank you. I tried to put the code you suggested in the first staff,
 and it works, but the font is bigger than in the initial one.
 Maybe I can use this throughout my score and suppress the
 piece = blabla in the header.
 
 You're welcome.
 
 Or change #'font-size to #0.
 
   \once \override Score.RehearsalMark #'font-size = #0
 
 But as I said if it is for Tempo indication I think the more
 appropriate way should be using the dedicated \tempo command.  ;-)
 
   \tempo Allegro
 
 http://lilypond.org/doc/v2.13/Documentation/notation/writing-parts.html#metronome-marks
 
 Cheers,
 Xavier
 
 --
 Xavier Scheuer x.sche...@gmail.com
 
 ___
 lilypond-user mailing list
 lilypond-user@gnu.org
 http://lists.gnu.org/mailman/listinfo/lilypond-user
 
 

-- 
View this message in context: 
http://old.nabble.com/New-piece-header-in-the-same-score-tp29258770p29272828.html
Sent from the Gnu - Lilypond - User mailing list archive at Nabble.com.


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: New piece header in the same score

2010-07-26 Thread Jayaratna

Thank you Heather,

this is useful too. It splits the piece in two separate scores, but I am
sure it will come useful sometimes.

Andrea



Heather W. Reichgott wrote:
 
 Here's what I use.  Should help with the font sizes too, because the
 header default font size is larger than the default font size for
 markup.  Don't be afraid of markup code, it doesn't have to be
 complicated :) and the section on markup in the documentation is
 helpful if you want to fine-tune the way it looks.
 
 
 \header {
   title = Pas de deux
   composer = Heather W. Reichgott
 }
 
 \markup {
   \fill-line { \line { 1. Adagio }}
 }
 
 \score {
 
 music for the first section goes here

 }
 
 \markup {
   \fill-line { \line { 2. Variation }}
 }
 
 \score {
 
 music for the second section goes here

 }
 
 etc.
 
 --

 Message: 1
 Date: Sun, 25 Jul 2010 18:09:33 +0200
 From: Xavier Scheuer x.sche...@gmail.com
 Subject: Re: New piece header in the same score
 To: Jayaratna jayara...@gmail.com
 Cc: lilypond-user@gnu.org
 Message-ID:
        aanlktinon5qrqutceuhmmum-xsvhjffjdev85hvy6...@mail.gmail.com
 Content-Type: text/plain; charset=UTF-8

 2010/7/25 Jayaratna jayara...@gmail.com:

 Ciao Federico,

 here is a small example: I need to create a new piece title after the
 double bar.  I think James is right, I will have to use markups: I am
 not really confident with these, that's why I try to avoid using them.

 Hi.

 Something like

  \once \override Score.RehearsalMark #'self-alignment-X = #LEFT
  \once \override Score.RehearsalMark #'font-size = #1
  \mark \markup { Symphonie - Lentement }

 should do something near expected AFAIK.

 You could also use a MetronomeMark instead of a RehearsalMark.

 Cheers,
 Xavier

 --
 Xavier Scheuer x.sche...@gmail.com



 --

 Message: 2
 Date: Sun, 25 Jul 2010 09:29:57 -0700 (PDT)
 From: Jayaratna jayara...@gmail.com
 Subject: Re: New piece header in the same score
 To: lilypond-user@gnu.org
 Message-ID: 29260770.p...@talk.nabble.com
 Content-Type: text/plain; charset=us-ascii


 Dear Xavier,

 thank you. I tried to put the code you suggested in the first staff, and
 it
 works, but the font is bigger than in the initial one.
 Maybe I can use this throughout my score and suppress the piece =
 blabla
 in the header.

 Cheers,
 Andrea




 Xavier Scheuer wrote:

 2010/7/25 Jayaratna jayara...@gmail.com:

 Ciao Federico,

 here is a small example: I need to create a new piece title after the
 double bar.  I think James is right, I will have to use markups: I am
 not really confident with these, that's why I try to avoid using them.

 Hi.

 Something like

   \once \override Score.RehearsalMark #'self-alignment-X = #LEFT
   \once \override Score.RehearsalMark #'font-size = #1
   \mark \markup { Symphonie - Lentement }

 should do something near expected AFAIK.

 You could also use a MetronomeMark instead of a RehearsalMark.

 Cheers,
 Xavier

 --
 Xavier Scheuer x.sche...@gmail.com

 ___
 lilypond-user mailing list
 lilypond-user@gnu.org
 http://lists.gnu.org/mailman/listinfo/lilypond-user

 
 ___
 lilypond-user mailing list
 lilypond-user@gnu.org
 http://lists.gnu.org/mailman/listinfo/lilypond-user
 
 

-- 
View this message in context: 
http://old.nabble.com/New-piece-header-in-the-same-score-tp29266400p29272840.html
Sent from the Gnu - Lilypond - User mailing list archive at Nabble.com.


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: In parts but not in the score

2010-07-26 Thread Jayaratna

Dear Neil and Reinhold,

this is far too advanced for me. Even trying to copy and paste your codes
gives me errors (I think it's the \with thing).

Anyway in my case \mark will suffice: I will study your examples in depths
later,

Thank you again,
Andrea



n.puttock wrote:
 
 On 25 July 2010 15:02, Reinhold Kainhofer reinh...@kainhofer.com wrote:
 
 The only way to get it to work was to explicitly assign it to a staff...
 
 Switch off outside-staff positioning and the after-line-breaking
 callback; both of these prevent the negative 'Y-offset from dragging
 the mark into the system.
 
 defs = \with {
   \consists Mark_engraver
   \consists Staff_collecting_engraver
   \override RehearsalMark #'outside-staff-priority = ##f
   \override RehearsalMark #'after-line-breaking = ##t
 }
 
 Cheers,
 Neil
 
 ___
 lilypond-user mailing list
 lilypond-user@gnu.org
 http://lists.gnu.org/mailman/listinfo/lilypond-user
 
 

-- 
View this message in context: 
http://old.nabble.com/In-parts-but-not-in-the-score-tp29258748p29272863.html
Sent from the Gnu - Lilypond - User mailing list archive at Nabble.com.


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


In parts but not in the score

2010-07-25 Thread Jayaratna

Dear members,

I apologize if this matter should have been discussed earlier. I tried to
find posts about this but maybe my English language skills are not enough to
make the right search.

I am copying a score because I need to make parts: I need to put some texts
and other marks on single parts but I would like them not to appear on every
line of the score, but just at the top of each group. Any suggestion about
how this can be done without making two different files for each instrument?

Thank you for your kind help,
Andrea
Venice, Italy
-- 
View this message in context: 
http://old.nabble.com/In-parts-but-not-in-the-score-tp29258748p29258748.html
Sent from the Gnu - Lilypond - User mailing list archive at Nabble.com.


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


New piece header in the same score

2010-07-25 Thread Jayaratna

Dear members,

I apologize if this matter should have been discussed earlier. I tried to
find posts about this too but maybe my English language skills are not
enough to make the right search. 

My score has a double bar (\bar ||) before a cadenza, but the piece does
not end and goes on with a different tempo. 
I don't want to put a new score (this would begin the second part of the
piece it on a new page), but I can't figure out how to make a new header in
the middle of a score.

Moreover, the new piece header should not show on each part in the score,
but it should be there one every part output.

Thank you for your kind help,

Andrea
Venice, Italy


-- 
View this message in context: 
http://old.nabble.com/New-piece-header-in-the-same-score-tp29258770p29258770.html
Sent from the Gnu - Lilypond - User mailing list archive at Nabble.com.


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: In parts but not in the score

2010-07-25 Thread Jayaratna

Dear Graham,

thank you for your prompt answer.

I just have a further question: can a \mark be printed at the top of each
score group (this is what I need), or it is only printed at the top line of
the score?

Thank you again,
Andrea
Venice, Italy



Graham Percival-3 wrote:
 
 On Sun, Jul 25, 2010 at 12:44:42AM -0700, Jayaratna wrote:
 
 I am copying a score because I need to make parts: I need to put some
 texts
 and other marks on single parts but I would like them not to appear on
 every
 line of the score, but just at the top of each group. Any suggestion
 about
 how this can be done without making two different files for each
 instrument?
 
 This is done with \mark .  See the Text chapter for details.
 
 Cheers,
 - Graham
 
 ___
 lilypond-user mailing list
 lilypond-user@gnu.org
 http://lists.gnu.org/mailman/listinfo/lilypond-user
 
 

-- 
View this message in context: 
http://old.nabble.com/In-parts-but-not-in-the-score-tp29258748p29258797.html
Sent from the Gnu - Lilypond - User mailing list archive at Nabble.com.


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: In parts but not in the score

2010-07-25 Thread Jayaratna

Dear James,

thank you for your reply. Selected snippets for \mark show how to print text
on every staff of the score, but is there a method for printing them only
for top staffs of every group?

Thank you,
Andrea
Venice, Italy



James Bailey-4 wrote:
 
 Yes. This is discussed in the selected snippets section after \mark is
 introduced in the Notation Reference
 
 On Jul 25, 2010, at 10:05 AM, Jayaratna wrote:
 
 
 Dear Graham,
 
 thank you for your prompt answer.
 
 I just have a further question: can a \mark be printed at the top of each
 score group (this is what I need), or it is only printed at the top line
 of
 the score?
 
 Thank you again,
 Andrea
 Venice, Italy
 
 
 
 Graham Percival-3 wrote:
 
 On Sun, Jul 25, 2010 at 12:44:42AM -0700, Jayaratna wrote:
 
 I am copying a score because I need to make parts: I need to put some
 texts
 and other marks on single parts but I would like them not to appear on
 every
 line of the score, but just at the top of each group. Any suggestion
 about
 how this can be done without making two different files for each
 instrument?
 
 This is done with \mark .  See the Text chapter for details.
 
 Cheers,
 - Graham
 
 ___
 lilypond-user mailing list
 lilypond-user@gnu.org
 http://lists.gnu.org/mailman/listinfo/lilypond-user
 
 
 
 -- 
 View this message in context:
 http://old.nabble.com/In-parts-but-not-in-the-score-tp29258748p29258797.html
 Sent from the Gnu - Lilypond - User mailing list archive at Nabble.com.
 
 
 ___
 lilypond-user mailing list
 lilypond-user@gnu.org
 http://lists.gnu.org/mailman/listinfo/lilypond-user
 
 
 ___
 lilypond-user mailing list
 lilypond-user@gnu.org
 http://lists.gnu.org/mailman/listinfo/lilypond-user
 
 

-- 
View this message in context: 
http://old.nabble.com/In-parts-but-not-in-the-score-tp29258748p29259723.html
Sent from the Gnu - Lilypond - User mailing list archive at Nabble.com.


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


  1   2   >