Re: slashed afterGrace

2022-04-21 Thread Marcos Press
Probably by doing a voicing like the example in the link you send

new Voice \relative {
  <<
{ d''1^\trill_( }
{ s2 s4. \grace { c16 d } }
  >>
  c1)
}

But with a \slashedGrace

new Voice \relative {
  <<
{ d''1^\trill }
{ s2 s4. \slashedGrace { d8-( } }
  >>
  c1)
}

Hope it helps

On Fri, 22 Apr 2022, 00:48 Stephan Schöll,  wrote:

> Hi
>
> I would like to obtain kind of a mix of
>
> \relative c' { \afterGrace 1 d8 1 }
>
> and
>
> \relative c' { 1 \slashedGrace d8 1 }
>
> How do I get a slashed grace note *before* the beat / bar line in a
> handy way?
>
> The source I have consulted up to now:
>
> https://lilypond.org/doc/v2.22/Documentation/notation/special-rhythmic-concerns.en.html
>
> Needed for:
> Max Reger, Lose Blätter Op. 13, 12. Choral, bar 23
> (
> https://s9.imslp.org/files/imglnks/usimg/d/d8/IMSLP98093-PMLP33137-Reger_Werke_Breitkopf_Band_9_MR_9_Op_13_scan.pdf
> ,
> page 14)
>
> Thanks in advance for any suggestions!
>
> Best regards
> Stephan
>
>


Two Hands "Snake"

2019-07-07 Thread Marcos Press
Hello!

I'm trying to reproduce the curved line shown in the attached image.

The "Snake" is used to tell the interpreter that the other staff fragment
should be played by the two hands, or more accurated, IN the two hands. And
is intended so not to charge so much the score. (I know, I could copy/paste
o use a variable of music expresion)

Normaly use these ugly solution
%%%
s-\markup {"With 2 Hands"}
%%%

But it would be realy nice to reproduce these "Snake" line similar to the
usual line musicians use to represent small ralls.

I try with \path but couldn't get to do much

%%% these sample was extracted from lilypond manual 
samplePath =
  #'(
  (moveto 0 0)
 (curveto 0 -8 2 0 3 0)
 (curveto 3 -4 4 4 4 0)
 )
<>-\markup {\path #0.25 \samplePath}
%%%

I coudn't manage to add more curves (because they do whatever they want ;P).
And actualy these is a markup that expand no more than one beat.

What do you think it couls be the way?

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


Re: Customize \RemoveEmptyStaves

2018-07-17 Thread Marcos Press
Link for the example image...
https://drive.google.com/open?id=1vuTzR23XOfx1gTEra-aMv-oz35s_XY0h

El mar., 17 de jul. de 2018 a la(s) 16:30, Helge Kruse (helge.kr...@gmx.net)
escribió:

> Am 17.07.2018 um 19:09 schrieb Marcos Press:
> > Actually I'm not certain of which method to use. Perhaps it should be
> other
> > way.
> > The attached image is what I'm transcribing.
> >
> > It's for a double hand/staff instrument that lots of times use only one.
> Or
> > both doing the same so we just write one hand.
> >
> > The result is reduction of pages and unnecessary eye data.
> >
> > How would you resolve these?
>
> This looks like an example for \RemoveEmptyStaves. You could do
> something like this:
>
> \version "2.18.2"
>
> cello = \relative c'' {
>   \time 3/8
>   \repeat unfold 10 { R4. }
>   \repeat unfold 37 { c8 d e }
> }
>
> celloII = \relative c {
>   \time 3/8
>   \repeat unfold 40 { R4. }
>   c c c c c c c
> }
>
> \score {
>   <<
> \new StaffGroup <<
>   \new Staff { \clef treble \cello }
>   \new Staff { \clef bass \celloII  }
> >>
>   >>
>   \layout {
> \context {
>   \Staff \RemoveEmptyStaves
> }
>   }
> }
>
> Of course, this shows only the automatic disappearance of empty staff
> lines but not your score.
>
> Regards, Helge
>
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Customize \RemoveEmptyStaves

2018-07-17 Thread Marcos Press
The \tag metoth does not respect the time of removed bars. Still nice tip ;)

El El mar, 17 de jul de 2018 a las 14:11, Marcos Press 
escribió:

> My bad! Send without attach!
> Sorry!
> Here...
>
> El El mar, 17 de jul de 2018 a las 14:09, Marcos Press 
> escribió:
>
>> Actually I'm not certain of which metoth to use. Perhaps it should be
>> other way.
>> The attached image is what I'm transcribing.
>>
>> I'ts for a double hand/staff instrument that lots of times use only one.
>> Or both doing the same so we just write one hand.
>>
>> The resault is reduction of pages and unnecesary eye data.
>>
>> How would you resolve these?
>>
>> El El mar, 17 de jul de 2018 a las 02:06, Helge Kruse <
>> helge.kr...@gmx.net> escribió:
>>
>>> Marcos Press  schrieb am Di., 17. Juli 2018, 02:58:
>>>
>>>> Is there any way to set RemoveEmptyStaves just for SKIP's or when the
>>>> rest/skip is larger than 1 (one) bar?
>>>>
>>>> {
>>>> a1 | b4 a8 g b2 |
>>>> R1 | % no Remove
>>>> a1 | b4 a8 g b2 |
>>>> R1*2 | % yes Remove
>>>> a1 | b4 a8 g b2 |
>>>> R1 | % no Remove
>>>> f1 |
>>>> }
>>>>
>>>
>>> RemoveEmptyStaves is used to remove entire staff lines in a multi staff
>>> context. Your example looks as you want to remove individual measures. Why
>>> should Lilypond do this?
>>>
>>> Regards, Helge
>>>
>>>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Customize \RemoveEmptyStaves

2018-07-17 Thread Marcos Press
Actually I'm not certain of which metoth to use. Perhaps it should be other
way.
The attached image is what I'm transcribing.

I'ts for a double hand/staff instrument that lots of times use only one. Or
both doing the same so we just write one hand.

The resault is reduction of pages and unnecesary eye data.

How would you resolve these?

El El mar, 17 de jul de 2018 a las 02:06, Helge Kruse 
escribió:

> Marcos Press  schrieb am Di., 17. Juli 2018, 02:58:
>
>> Is there any way to set RemoveEmptyStaves just for SKIP's or when the
>> rest/skip is larger than 1 (one) bar?
>>
>> {
>> a1 | b4 a8 g b2 |
>> R1 | % no Remove
>> a1 | b4 a8 g b2 |
>> R1*2 | % yes Remove
>> a1 | b4 a8 g b2 |
>> R1 | % no Remove
>> f1 |
>> }
>>
>
> RemoveEmptyStaves is used to remove entire staff lines in a multi staff
> context. Your example looks as you want to remove individual measures. Why
> should Lilypond do this?
>
> Regards, Helge
>
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Customize \RemoveEmptyStaves

2018-07-17 Thread Marcos Press
I didnt knew about these \tag !!!
Lilypond is so big and I'm so ...
Seams a nice work around. I'll try.
Thanks for these one.

El El mar, 17 de jul de 2018 a las 02:44, Pierre Perol-Schneider <
pierre.schneider.pa...@gmail.com> escribió:

> Hi Marcos,
>
> How about using tags ?
>
> %%
> \version "2.18.2"
>
> music = {
>
>   a1 | b4 a8 g b2 |
>   R1 | % no Remove
>   a1 | b4 a8 g b2 |
>   \tag #'yes R1*2 | % yes Remove
>
>   a1 | b4 a8 g b2 |
>   R1 | % no Remove
>   f1 |
> }
>
> \new Staff \music
> \new Staff \removeWithTag #'yes \music
>
> %%
>
> 2018-07-17 7:06 GMT+02:00 Helge Kruse :
>
>> Marcos Press  schrieb am Di., 17. Juli 2018, 02:58:
>>
>>> Is there any way to set RemoveEmptyStaves just for SKIP's or when the
>>> rest/skip is larger than 1 (one) bar?
>>>
>>> {
>>> a1 | b4 a8 g b2 |
>>> R1 | % no Remove
>>> a1 | b4 a8 g b2 |
>>> R1*2 | % yes Remove
>>> a1 | b4 a8 g b2 |
>>> R1 | % no Remove
>>> f1 |
>>> }
>>>
>>
>> RemoveEmptyStaves is used to remove entire staff lines in a multi staff
>> context. Your example looks as you want to remove individual measures. Why
>> should Lilypond do this?
>>
>> Regards, Helge
>>
>>
>> ___
>> lilypond-user mailing list
>> lilypond-user@gnu.org
>> https://lists.gnu.org/mailman/listinfo/lilypond-user
>>
>>
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Customize \RemoveEmptyStaves

2018-07-16 Thread Marcos Press
Is there any way to set RemoveEmptyStaves just for SKIP's or when the
rest/skip is larger than 1 (one) bar?

{
a1 | b4 a8 g b2 |
R1 | % no Remove
a1 | b4 a8 g b2 |
R1*2 | % yes Remove
a1 | b4 a8 g b2 |
R1 | % no Remove
f1 |
}

Thanks!

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


\bendAfter Once more...

2017-08-23 Thread Marcos Press
Once again I'm applying \bendAfter in my score and find these strange
behavior...
code:

\version "2.18.2"

\relative c'' {
% print bend after mono-voice note Great! %
 2 c2-\bendAfter #+4


% no bend printed over chord-voice %
 2-\bendAfter #+4 c2


% Works in poly-voice but diferent structure No '#' and No '+' but Yes '-' %
 <<
  {c2-\bendAfter 4}
 \\
  {a2-\bendAfter -4}
 >>
 c2


% after first apply to chord, no bend's printed again in signle voice %
 2 c2-\bendAfter #-4
}

Sorry for the code.

I can go with splitting certain chords to voices.
But loosing bends after certain "fail" applayance seams a bug or an
unwanted behavior.

Thanks for any tip or sugestions on \bendAfter and or any other area.

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


alternative problem in repetition

2016-01-26 Thread Marcos Press
Hi list!,
Can anyone try these and tell me why does lilypond eliminate the second
alternative?
My output said that there are more \alternatives than repetitions, but
thats not true.

\version "2.18.2"

\relative a'' {
 \time 6/8
 \repeat volta 2 {
  <<
   { a8-.-- g-.-- r r4 fis8-.-- | fis8-.-- e-.-- r r4 d8-.-- | d2. }
  \\
   { fis8-.-- e-.-- r r4 e8-.-- | d8-.-- cis-.-- r r4 b8-.-- | b2. }
  >>
  a2 d8 e | a2 a8 b | e,2. | g4 fis g |
 }
 \alternative {
  { a2. }
 \\
  { a2.~ | a2 r4 }
 }
}

Thanks!

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


Re: Violin notation advice requested

2015-09-21 Thread Marcos Press
Hi!

>From my experience as violinist wich I still are :) I can say that:

- The lower information is an alternative. Wich you use depending on your
likes on interpretation. Basically, because the same note in different
position and string sounds quite... diferent.
- Digits for Finguers.
- Roman numbers for Strings.
- In doble stops, it is normal to have the upper digit for the upper note
and the lower for the lowers note ;) but these are writted toguether, not
up and down the system but in the same line one over the other in a
fraction way (like the time signature)

In your image of the Bach violin concert, you pass over a 3 and 1 fingering
posibility after the reharshal mark C at the b note.
What it sais is that you can play the b note at the II string with finger 1
wich gives you the note in first position, or you can play it with the 3
finger over the III string arriving to the 3º position.
Since it had not string indication, one can be crasy enough to try and play
with finger 1 on the III string ;) wich gives you the 5th position,
probably a nice sound and probably an awfull way back to confort :) Just
for fun!
There are plenty of posibilities.

It seams that the editor, aparently in a way of trying a clear view
(because he didn't had Lilypond) decide to omit the number of the string,
so it doesn't overlapp with the p (piano) symbol.

Except that its indicated in the symbol index at the begining of the score
that Roman numbers are positions (wich could be the case of an educational
method book for practicing position changing), Roman numbers are for
Strings. I - e; II - a; III - d; IV - g.

Hopes it helps.

Marcos
Sorry my writting ;P

2015-09-19 22:50 GMT+02:00 Ralph Palmer :

> On Sat, Sep 19, 2015 at 2:34 PM, Chris Yate  wrote:
>
>> No, It's quite common to indicate the string by Roman numerals. Printed
>> music would hardly ever indicate position, but it is normal to see either
>> "sul G" or "IV".
>>
> Actually, I have occasionally seen (and used on scores, myself) Roman
> numeral designation of position. I find it confusing when I see Roman
> numerals for strings; I much prefer "G" or "sul G". Less ambiguous to me.
>
> All the best,
>
> Ralph
>
> --
> Ralph Palmer
> Brattleboro, VT
> USA
> palmer.r.vio...@gmail.com
>
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Lyric in popular score

2015-09-01 Thread Marcos Press
Thanks Simon!
The \skip was what I miss!

I'm not used to input lyrics :)

2015-09-01 23:17 GMT+02:00 Simon Albrecht :

> Hello Marcos,
>
> first: welcome to the list!
>

actualy... I've been in the list for a couple of years ;)
But is always great to be welcome Thanks!

And thanks Lilypond for been a so great software and community!


> Second: It almost always helps if you add a compilable, possibly tiny
> example <http://lilypond.org/tiny-examples.html> to your post – thus it
> will be easier a) to understand the problem and b) to give you a solution.
> Third general remark: Are you familiar with the Learning Manual? <
> http://lilypond.org/doc/v2.18/Documentation/learning/index.html> It’s a
> great resource for getting started with LilyPond and covers all the basics,
> also tutoring you on how to use the other manuals – so you shouldn’t miss
> studying that! It’ll be very rewarding.
>
But now to your question :-)
>
> Am 01.09.2015 um 22:34 schrieb Marcos Press:
>
>> Dear list,
>>
>> Iḿ trying to add the lyric of a folk song to a score.
>>
>> How do I tell the lyric in wich measure to start?
>>
> There are two general ways to enter lyrics: 1) entering them with explicit
> durations and 2) automatically aligning them to a voice through \addlyrics
> or \lyricsto (or \set associatedVoice).
>
> 1) Use a skip of the required length to skip the first part of the music.
> 2) Repeat the skip as many times as there are notes to skip.
>
> Example attached.
>
> You’ll find that with the first method, the syllables are all left-aligned
> to the notes, at least if you use version 2.18.2 or earlier. This is a bug
> fixed only in the more recent development versions, so at least for the
> stable version you’re better off with \lyricsto.
> In simple setups, \addlyrics may be used as well in place of \new Lyrics
> \lyricsto.
>
> Can anyone point me where to look for an answer?
>>
> The Learning Manual has a section on lyrics: <
> http://lilypond.org/doc/v2.18/Documentation/learning/songs>, but the
> answer to your question is hidden deep in the Notation reference, in <
> http://lilypond.org/doc/v2.18/Documentation/notation/techniques-specific-to-lyrics#lyrics-and-repeats
> >.
>
>>
>> Thanks in advance!
>>
> You’re welcome! HTH [Hope that helps].
>
> Simon
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Lyric in popular score

2015-09-01 Thread Marcos Press
Dear list,

Iḿ trying to add the lyric of a folk song to a score.

How do I tell the lyric in wich measure to start?

All the things I found in google, the manuals and snippets always deals
lyrics starting at the same moment of the music.

What I need is

\chords { blah blah blah blah }
\music { blah blah blah blah }
\lyric { R2*15 r4. blah blah blah}

Do I have to break the music block into two blocks?

Can anyone point me where to look for an unswer?

Thanks in advance!

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


Re: ask

2015-04-22 Thread Marcos Press
Please, Always use the "Replay to All"

I'm sorry but I'm not a midi user so then if there is anything strange with
the midi file I will not know what to do.
And It's much more convenient if you do it your self.

On Windows to open a command prompt:
http://windows.microsoft.com/en-us/windows-vista/open-a-command-prompt-window

On Mac Navigate to Applications/Utilities/Terminal

and the, just follow the lilypond manual for invoking midi2ly:
http://www.lilypond.org/doc/v2.18/Documentation/usage/invoking-midi2ly

search the web. There is plenty of info

Luck

2015-04-22 8:22 GMT-03:00 Kond éltes :

> dear Marcos!  My name Kond Éltes eltesk...@gmail.com If I send for you my
> music,  you du press score and send me?
>
> Éltes Kond /n.d.n.s.l./
>
> 2015-04-22 13:19 GMT+02:00 Kond éltes :
>
>> Dear Marcos! if I send for you my music, you du sprint a score?
>>
>> Éltes Kond /n.d.n.s.l./
>>
>> 2015-04-22 10:30 GMT+02:00 Marcos Press :
>>
>>> Hi Mr Eltes,
>>> I think the way of using it depends a little on your system.
>>>
>>> Under Linux, the easy way is to open a terminal and run the .midi file
>>> through midi2ly and the resulting .ly file through lilypond and there
>>> you'll have the .pdf file to print.
>>>
>>> 
>>> $ midi2ly myfile.midi
>>> [...]
>>> $ lilypond myfile.ly
>>> [...]
>>> $ lpr myfile.pdf
>>> 
>>>
>>> Each program have a pack of running options that you could read in the
>>> manuals.
>>>
>>> 
>>> $ midi2ly --help
>>> Usage: midi2ly [OPTION]... FILE
>>>
>>> Convert MIDI to LilyPond input.
>>>
>>> Options:
>>>-a, --absolute-pitches
>>> print absolute pitches
>>>-d, --duration-quant=DUR
>>> quantise note durations on DUR
>>>-D, --debug  debug printing
>>>-e, --explicit-durations
>>> print explicit durations
>>>-h, --help   show this help and exit
>>>-i, --include-header=FILE
>>> prepend FILE to output
>>>-k, --key=ALT[:MINOR]
>>> set key: ALT=+sharps|-flats; MINOR=1
>>>-o, --output=FILEwrite output to FILE
>>>-p, --previewpreview of first 4 bars
>>>-q, --quiet  suppress progress messages and warnings about
>>> excess
>>> voices
>>>-s, --start-quant=DUR
>>> quantise note starts on DUR
>>>-S, --skip   use s instead of r for rests
>>>-t, --allow-tuplet=DUR*NUM/DEN
>>> allow tuplet durations DUR*NUM/DEN
>>>-V, --verbosebe verbose
>>>--versionshow version number and exit
>>>-w, --warranty   show warranty and copyright
>>>-x, --text-lyricstreat every text as a lyric
>>>
>>> Examples:
>>>
>>>   $ midi2ly --key=-2:1 --duration-quant=32 --allow-tuplet=4*2/3
>>> --allow-tuplet=2*4/3 foo.midi
>>>
>>> Report bugs via
>>> http://post.gmane.org/post.php?group=gmane.comp.gnu.lilypond.bugs
>>> 
>>>
>>> Luck
>>>
>>> 2015-04-21 12:46 GMT-03:00 Kond éltes :
>>>
>>>>  Dear lilipond Group! My name Kond éltes I just want to know how I can
>>>> use the program to midi2ly after my own music scores to print ask steps
>>>> midi2ly aplication eltesk...@gmail.com yours kond Éltes
>>>> Éltes Kond /n.d.n.s.l./lilipon
>>>>
>>>> ___
>>>> lilypond-user mailing list
>>>> lilypond-user@gnu.org
>>>> https://lists.gnu.org/mailman/listinfo/lilypond-user
>>>>
>>>>
>>>
>>
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: ask

2015-04-22 Thread Marcos Press
Hi Mr Eltes,
I think the way of using it depends a little on your system.

Under Linux, the easy way is to open a terminal and run the .midi file
through midi2ly and the resulting .ly file through lilypond and there
you'll have the .pdf file to print.


$ midi2ly myfile.midi
[...]
$ lilypond myfile.ly
[...]
$ lpr myfile.pdf


Each program have a pack of running options that you could read in the
manuals.


$ midi2ly --help
Usage: midi2ly [OPTION]... FILE

Convert MIDI to LilyPond input.

Options:
   -a, --absolute-pitches
print absolute pitches
   -d, --duration-quant=DUR
quantise note durations on DUR
   -D, --debug  debug printing
   -e, --explicit-durations
print explicit durations
   -h, --help   show this help and exit
   -i, --include-header=FILE
prepend FILE to output
   -k, --key=ALT[:MINOR]
set key: ALT=+sharps|-flats; MINOR=1
   -o, --output=FILEwrite output to FILE
   -p, --previewpreview of first 4 bars
   -q, --quiet  suppress progress messages and warnings about excess
voices
   -s, --start-quant=DUR
quantise note starts on DUR
   -S, --skip   use s instead of r for rests
   -t, --allow-tuplet=DUR*NUM/DEN
allow tuplet durations DUR*NUM/DEN
   -V, --verbosebe verbose
   --versionshow version number and exit
   -w, --warranty   show warranty and copyright
   -x, --text-lyricstreat every text as a lyric

Examples:

  $ midi2ly --key=-2:1 --duration-quant=32 --allow-tuplet=4*2/3
--allow-tuplet=2*4/3 foo.midi

Report bugs via
http://post.gmane.org/post.php?group=gmane.comp.gnu.lilypond.bugs


Luck

2015-04-21 12:46 GMT-03:00 Kond éltes :

>  Dear lilipond Group! My name Kond éltes I just want to know how I can use
> the program to midi2ly after my own music scores to print ask steps midi2ly
> aplication eltesk...@gmail.com yours kond Éltes
> Éltes Kond /n.d.n.s.l./lilipon
>
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: \alternative error...

2014-11-21 Thread Marcos Press
Thanks All!

I'v been using bar checks outside the curlys and never had any problem
until now :/
I remove the checks and everything works fine.

In the manual theres lot of examples using \alternative with unfold and
I've use it normaly.

Again, Thanks!

2014-11-21 13:52 GMT-03:00 Pierre Perol-Schneider <
pierre.schneider.pa...@gmail.com>:

> Hi Marcos,
>
> 2014-11-21 17:02 GMT+01:00 Marcos Press :
>
>
>> Can someone tell why the small fragment in the attached .ly file, gives
>> these error?
>>
>
> You have to put the barlines at the right places ; the following code
> won't give you any error/warning :
>
> \version "2.18.2"
>
> \relative c'{
>   \time 2/4
>   \repeat unfold 2 { r16 fis g a bes a8 fis16 | }
>   \alternative {
>{ g16 fis g a bes a8 fis16 | }
>{ g16 fis g a bes a8 e16 | }
>   }
>   \repeat unfold 3 {  g16 fis g a bes a8 e16 | }
> }
>
> but won't probably give you what you expected...
>
>
>> Another curiosity is, if in the .ly file I write in diferent lines the {
>> } an the music expresions of the \repeat, like these:
>>
>> \repeat unfold 2 {
>>  c c
>> }
>>
>> the file compiles with these warning and the pdf voltas results in one
>> less as the warning said:
>>
>
> In fact, the \alternative code needs to be preceeded by \repeat volta
> (and not \repeat unfold) to be expressed ; so here it goes :
>
> \version "2.18.2"
>
> \relative c'{
>   \time 2/4
>   \repeat volta 2 { r16 fis g a bes a8 fis16 | }
>   \alternative {
> { g16 fis g a bes a8 fis16 | }
> { g16 fis g a bes a8 e16 | }
>   }
>   \repeat unfold 3 { g16 fis g a bes a8 e16 | }
> }
>
>
> HTH;
> Pierre
>
>
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


\alternative error...

2014-11-21 Thread Marcos Press
Hi List!
Can someone tell why the small fragment in the attached .ly file, gives
these error?


$ lilypond rep.ly
GNU LilyPond 2.18.2
...
rep.ly:8:1: error: syntax error, unexpected \alternative

\alternative {
rep.ly:3:1: error: se han encontrado errores, se ignora la expresión musical

\relative c'{
error fatal: archivos que han fallado: "rep.ly"


Another curiosity is, if in the .ly file I write in diferent lines the { }
an the music expresions of the \repeat, like these:

\repeat unfold 2 {
 c c
}

the file compiles with these warning and the pdf voltas results in one less
as the warning said:


$ lilypond rep.ly
GNU LilyPond 2.18.2
...
advertencia: Hay más alternativas que repeticiones.  Se recortan las
alternativas excedentes
warning: There are more alternatives than repetitions. The exceded
alternatives are cut.
[...]
Enhorabuena. La compilación se ha completado satisfactoriamente.


Thanks for the help

Marcos
\version "2.18.2"

\relative c'{

\time 2/4

\repeat unfold 2 {r16 fis g a bes a8 fis16} |
\alternative {
 {g16 fis g a bes a8 fis16} |
 {g16 fis g a bes a8 e16} |
}

\repeat unfold 3 {g16 fis g a bes a8 e16} |
}
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Quick Repeats

2014-11-18 Thread Marcos Press
Thanks.

Seams the way would be to just use the macro :) which its a great one ;)

2014-11-18 16:30 GMT-03:00 Noeck :

> >> {a4 r}*4
> >>
> >> Wouldn't be great?
> >
> > I remember a discussion about this long time ago. A possible workaround
> > is described in
> >
> > http://lists.gnu.org/archive/html/lilypond-devel/2009-11/msg00362.html
>
> That would have been my solution, too. With a recent version, you can
> also write:
>
> \version "2.18.2"
>
> u = #(define-music-function (parser location times music) (number?
> ly:music?)
>   #{ \repeat unfold $times $music #})
>
> \u 4 { a4 r }
>
> Cheers,
> Joram
>
>
>
>
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Quick Repeats

2014-11-18 Thread Marcos Press
Hi List,

Iḿ looking for a way of making quick repeats of small fragments (not
tremolos) without having to input the whole \repeat function.
I don't know if theres already a threat with these topic.

for example:

a4 r a r a r a r

with the function '\repeat' would be

\repeat unfold 4 {a4 r}

in the end I write the same or more characters than repeating the secuence.

But if it could be done just by...

{a4 r}*4

Wouldn't be great?

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


Re: Is this ugly?

2013-12-03 Thread Marcos Press
Several things can be made.

#*# One. Put the slur down.
http://lilypond.org/doc/v2.12/Documentation/user/lilypond/Curves.html#Slurs
Still works in 2.17 as well.

\version "2.17.96"

{
 \slurDown
 a'8( b'4.) r2
}
[image: Imágenes integradas 2]


#*# Two. Put a silent note.
I just use a random scale duration.
Scaled correctly should gives the exact time duration :)
http://www.lilypond.org/doc/v2.17/Documentation/notation/writing-rhythms.html#scaling-durations

\version "2.17.96"

{
 a'8( s8*4/8 b'4.*4/8) r2
}
[image: Imágenes integradas 1]


Marcos.


2013/12/3 Ed Gordijn 

>
> > > But this example doesn't have the flag, which is the problematic issue
> here.
> > >
> >
> > Alternately, couldn't the stem of the B go up instead of down
>
> I would prefer slur down to avoid the flag and connect from note head to
> the stem.
>
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>
>
<><>___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: How to hide time signature

2013-11-29 Thread Marcos Press
Try here:

http://lilypond.org/doc/v2.17/Documentation/notation/visibility-of-objects.html


2013/11/29 Mr. Server Acim 

> Hello,
> We are writing a book about Harmony with my friend. At the begining
> chapter we will give basic music theory knowledges.
> I am trying to write a C Major Scale. The letters between the notes are
> the step extentions.
> I want to hide the Time Signature (8/1). But I can not.
>
> You will see the code in the attached files.
>
> Thank you.
>
> --
> Server ACİM
> - Besteci (Composer)
> - İnönü Üniversitesi Öğretim Üyesi (Full Professor of Music Composition at
> Inonu Universitesi - Malatya - TURKEY)
> - Linux Mint Kullanıcısı ve Destekçisi (Linux Mint User and Supporter)
>
> http://google.com/+ServerAcim
> http://about.me/server.acim
>
>
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Please help

2013-11-29 Thread Marcos Press
You can start here:

http://www.lilypond.org/doc/v2.17/Documentation/notation/displaying-pitches.html#key-signature



2013/11/29 Ryan McClure 

> If you try this, you can get a key signature close to what you need...I'm
> unsure how to add brackets around the flats, though.
>
> \set Staff.keySignature = #`(((0 . 10) . ,SHARP)
>((0 . 7) . ,SHARP)
>((0 . 11) . ,SHARP)
>((0 . 8) . ,SHARP)
>((0 . 6) . ,FLAT)
>((0 . 9) . ,FLAT)
>((0 . 5) . ,FLAT))
>
>
>
> -
> Ryan McClure
>
> Luna Music Engraving
> www.lunamusicengraving.com
> --
> View this message in context:
> http://lilypond.1069038.n5.nabble.com/double-key-signature-tp154623p154626.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-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: An invitation to a LilyPond powered concert

2013-11-26 Thread Marcos Press
I'm completly with you!

The thing is "Trade Treaties" means there are ownership discussion.
I do respect Authors but Ownership is a little different.

Corporates rats exist everywhere and from any origen. Even here in
Argentina (South-East American continent).

To stop rats for doing their lifes in the walls, there are different ways,
and not so agressive as rats traps (or corporates traps).
Like my parents completly wood house in Bariloche (made by our own hands
and in the woods). The house floats over pillars at lest 50cm over the
ground, and we let nature deal with nature, so cats and dogs are enought.
I assure you that in the 20 years of existance of that house there where
only 2 or 3 rats in total and they've been chased away.

Nature is to be respected and Time deals with it.

Going back to the subject of the mailing.
I'm glad someone finaly done what infinite amount of musicians thought.
More glad that they made it with the best software available, not only
cause of the software but because of the comunnity too.
That really differs LilyPond from all others.

I'm sad I would not be able to assist.
Great Good Luck! with the system Jan.
I'm more than sure the edition is superb!
And pretty sure the concerts would be great too!

Marcos.


2013/11/26 David Kastrup 

> Marcos Press  writes:
>
> > 2013/11/26 Janek Warchoł 
> >
> >> 2013/11/26 David Kastrup :
> >> > Philippe Massart  writes:
> >> >> Regarding Rachmaninov, his work will enter public domain in Belgium
> >> >> (and most of European countries) in a few weeks, the January 1st
> >> >> following the 70th anniversary of his death.
> >> >
> >> > The new trade law treaty TPP currently in _secret_ negotiation will
> >> > retroactively bump the public domain date by 30 years even in the EU.
> >> > This treaty will trump national law.
> >> >
> >> > Welcome to democracy.
> >>
> >> one word: 
>
> > One World!
>
> Sure, that's the idea behind trade treaties.  But if that one world is
> to be the worst common denominator under the control of global
> corporations, I prefer keeping the door closed.
>
> I don't let the wild life run through the house, either.  Today I exiled
> a field mouse caught in the rat trap on the side of the house to the
> other canal side.  Two days ago a madly protesting Great Tit fluttered
> to and fro in the trap.  The real target is sweeping up woodmice before
> they get into the walls as they make a hell of a racket when running in
> walls and floors at night.  Somewhat successfully.  Interestingly, the
> house mice are basically not to be found next to the house, keeping to
> the stables instead.  And apart from two caught exemplars, the brown
> rats preferred dwelling at our neighbor's place this year.
>
> Apropos: even if the corporate rats are permitted to gobble up the North
> American continent, I'm not interested in letting them in here.
>
> --
> David Kastrup
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: An invitation to a LilyPond powered concert

2013-11-26 Thread Marcos Press
One World!


2013/11/26 Janek Warchoł 

> 2013/11/26 David Kastrup :
> > Philippe Massart  writes:
> >> Regarding Rachmaninov, his work will enter public domain in Belgium
> >> (and most of European countries) in a few weeks, the January 1st
> >> following the 70th anniversary of his death.
> >
> > The new trade law treaty TPP currently in _secret_ negotiation will
> > retroactively bump the public domain date by 30 years even in the EU.
> > This treaty will trump national law.
> >
> > Welcome to democracy.
>
> one word: 
>
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Primo symbol in LilyPond

2013-11-24 Thread Marcos Press
Keeping away from theoricals constructions of different languages and
sticking to the image to achive, I think these should do some trick. Surely
it could be perfected.

\score {

  \relative c'' {

   c^\markup \concat { 1\char #186 }  % from pls snip

   b^\markup{ "1°"}   % from ryanmichaelmcclure

   c^\markup{ \concat{ "1" \large "°"}} % from ryanmichaelmcclure

   b^\markup{ \concat{"1"\column{\vspace #-.2"o" \vspace #-.8"."}}} % my
idea.

|

   g^\primero

   a^\markup{ "1°"}

   g^\markup{ \concat{ "1" \large "°"}}

   a^\markup{ \concat{"1"\column{\vspace #-.2"o" \vspace #-.8"."}}}

  }

}

Good Luck!


2013/11/24 Gilberto Agostinho 

> David Kastrup wrote
> > My mastery of Spanish (and/or Portuguese?) is non-existing, but it would
> > seem like the name and existence of that glyph makes it likely that its
> > presence alone should be indicative of an ordinal number.
>
> Just a short (and pedantic) comment: in Portuguese (or at least in Brazil),
> the correct way to abbreviate the word "primeiro" is 1.º
>
> If you write 1° (without the point), this should be read as "um grau" (one
> degree). That said, not many people use these concepts correctly, and more
> often than not you will find 1° representing "primeiro".
>
> I know that the link in the wikitionary also says that 1º is the correct
> abbreviation for primeiro, but I think they got it wrong there.
>
> Take care,
> Gilberto
>
>
>
> --
> View this message in context:
> http://lilypond.1069038.n5.nabble.com/Primo-symbol-in-LilyPond-tp154307p154341.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-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: lilypond web is down???

2013-11-10 Thread Marcos Press
Ok!
Thanks!


2013/11/10 Federico Bruni 

> Il dom, nov 10, 2013 at 4:18 , Marcos Press  ha
> scritto:
>
> Hi, is lilypond web down?
>
> I make a test whit www.isup.me and gives me that lilypond is down.
>
> Any hint? Do I miss a down news post?
>
>
> confirmed
> it happens sometimes, probably they are doing maintenance..it's sunday :-)
> try again later
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


lilypond web is down???

2013-11-10 Thread Marcos Press
Hi, is lilypond web down?

I make a test whit www.isup.me and gives me that lilypond is down.

Any hint? Do I miss a down news post?

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


Re: lilypond-book: warning: cannot detect textwidth from LaTeX

2013-10-26 Thread Marcos Press
Absolutly right.
You really have some perception powers :)
I was not telling lilypond-book to use xelatex.
Now it detects the marging and the result is much much better than before :)

Thanks.


2013/10/25 Marc Hohl 

> Am 25.10.2013 15:45, schrieb Marcos Press:
>
>> Hi all!
>>
>>
>> Every time I run lilypond-book I have the same first three lines:
>>
>> 
>> Running `pdflatex' on file `/tmp/tmpk95zdA.tex' to detect default page
>> settings.
>>
>> lilypond-book: warning: Unable to auto-detect default settings:
>>
>> lilypond-book: warning: cannot detect textwidth from LaTeX
>> 
>>
>> Then, it ends up rendering the hole thing completly, nearly without
>> problem except my ouns wich are allways there. :)
>>
>> Is there any way to solve these auto-detection?
>>
>
> Without knowing how your file looks like and how you invoke
> lilybond-book, there is probably some extrasensory perception
> needed ;-)
>
>
>  If not, how can I tell lilypond-book the textwidth of my tex file? And
>> how can I know it?
>>
>
> I had a similar case some time ago due to the fact that I used
> xelatex for processing the file but forgot to tell lilypond-book
> to use xelatex for auto-detection.
>
>
>
> __**_
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/**listinfo/lilypond-user<https://lists.gnu.org/mailman/listinfo/lilypond-user>
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: lilypond-book: warning: cannot detect textwidth from LaTeX

2013-10-26 Thread Marcos Press
You hit one spot :)
I'm trying to put examples in multicolumn. Which I resolve in doing two
thing.

Ono is to put the example in the three columns.
The other is to end the table, put the example centered and then start the
table again.
A time ago I been trying the \multicolumn command but I couldn't remember
why I couldn't use it :)

About my orginal question, Marc answer was the reason I keep getting that
warning.


2013/10/25 Urs Liska 

>  Am 25.10.2013 15:45, schrieb Marcos Press:
>
>   Hi all!
>
>  Every time I run lilypond-book I have the same first three lines:
>
> 
> Running `pdflatex' on file `/tmp/tmpk95zdA.tex' to detect default page
> settings.
>
> lilypond-book: warning: Unable to auto-detect default settings:
>
> lilypond-book: warning: cannot detect textwidth from LaTeX
> 
>
>  Then, it ends up rendering the hole thing completly, nearly without
> problem except my ouns wich are allways there. :)
>
>  Is there any way to solve these auto-detection?
>  If not, how can I tell lilypond-book the textwidth of my tex file? And
> how can I know it?
>
>
> I don't know.
> But this is one of the reasons I *want* to improve my musicexamples
> package. When all this isn't run from an external Python script but from
> within the running latex it is of course possible to detect the textwidth.
> It's even possible to access the _currently_ active textwidth. For example
> if you want to place examples in multicolumn text.
>
> In general it says lilypond-book will _try_ to guess the correct width but
> will fail in some circumstances.
>
> For determining the textwidth manually maybe this will help you:
> http://stackoverflow.com/questions/1168551/printing-out-latex-variables
>
> HTH
> Urs
>
>
>  Thanks!
>
>  Marcos
>
>
> ___
> lilypond-user mailing 
> listlilypond-user@gnu.orghttps://lists.gnu.org/mailman/listinfo/lilypond-user
>
>
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


lilypond-book: warning: cannot detect textwidth from LaTeX

2013-10-25 Thread Marcos Press
Hi all!

Every time I run lilypond-book I have the same first three lines:


Running `pdflatex' on file `/tmp/tmpk95zdA.tex' to detect default page
settings.

lilypond-book: warning: Unable to auto-detect default settings:

lilypond-book: warning: cannot detect textwidth from LaTeX


Then, it ends up rendering the hole thing completly, nearly without problem
except my ouns wich are allways there. :)

Is there any way to solve these auto-detection?
If not, how can I tell lilypond-book the textwidth of my tex file? And how
can I know it?

Thanks!

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


Ligature to nothing

2013-10-20 Thread Marcos Press
Hi! I'm full of questions today :D

In these case, I have three times the same last ligature and when I repeat
it a fourth time, it doesn't print the same before like you can see at the
attached file.

Why?

\version "2.17.28"

one = \relative c''{e8-. g( e) c( b[) d( b) a8*1/2]( s8*1/2)}
two = \relative c''{e8-. g(-. e)-. c( b[) d(-. b)-. a8*1/2]( s8*1/2)}
three = \relative c''{e8-. g(-. e)-. c(-. b[)-. d(-. b)-. a8*1/2](-.
s8*1/2)}
four = \relative c''{e8-. g(-. e-. c-. b[)-. d( b a8*1/2] s8*1/2)}

\score {
  \new Staff {
\time 4/4
\one
\two
\three
\four
  }
}

Thanks!
Marcos
<>___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Strange behavior

2013-10-20 Thread Marcos Press
The question was not over convert-ly. I'm sory if it sounds like that. It
was not the intention.

Actualy I first try by re-tipeing under 2.17 and when that didn't work I
went back to the original file and convert it.
I don't think it has nothing to do with convert-ly and absolutly don't
think convert-ly should add the extra lines to produce (in these specific
case) the previous behavior :)

Simply that, up until 2.16 the Steam.transparent only touch the steams and
that is not the case in 2.17.
Obviously I didn't read all the staffs that change from version to version
:)

The way Federico points me, solves the isue.

Now, What's the use case for beams without stems?

I don't think there is any case use for that. As you point out. :)
It is only a way to reproduce the png image. I know the result it's nothing
like the image, but it was a solution.

The image is a crop from an explanation of interpretation of a violin
studie book.

Thanks


2013/10/20 David Kastrup 

> Federico Bruni  writes:
>
> > 2013/10/20 Marcos Press 
> >
> >> The result I need is the one that said correct.
> >> I don't know whay, in 2.16 the
> >>
> >> \override Stem.transparent = ##t
> >>
> >> It just turn transparent the steams, without toching the Beams.
> >> But now 2.17 It turn transparent the beams too.
> >
> >
> > seen recently on this list :-)
> > http://lists.gnu.org/archive/html/lilypond-user/2013-10/msg00486.html
> >
> > this is the sort of things that convert-ly cannot cover
>
> It most certainly can cover such things.  It's probably surprising that
> people relied on the previous behavior.
>
> This was introduced as
> http://code.google.com/p/lilypond/issues/detail?id=2866>.  The
> question is whether this changed behavior may be troublesome enough to
> warrant additional action or convert-ly rules.
>
> What's the use case for beams without stems?
>
> --
> David Kastrup
>
>
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Strange behavior

2013-10-20 Thread Marcos Press
Graet!
Thanks!


2013/10/20 Federico Bruni 

> 2013/10/20 Marcos Press 
>
>> The result I need is the one that said correct.
>> I don't know whay, in 2.16 the
>>
>> \override Stem.transparent = ##t
>>
>> It just turn transparent the steams, without toching the Beams.
>> But now 2.17 It turn transparent the beams too.
>
>
> seen recently on this list :-)
> http://lists.gnu.org/archive/html/lilypond-user/2013-10/msg00486.html
>
> this is the sort of things that convert-ly cannot cover
>
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Hemiola indication

2013-10-20 Thread Marcos Press
I'm using the same as Mark but with back slash.

c \[ a b e d \]

It's actually a ligature in the docs.
http://www.lilypond.org/doc/v2.17/Documentation/notation/ancient-notation_002d_002dcommon-features#ligatures

also take a look at
http://www.lilypond.org/doc/v2.17/Documentation/8e/lily-9b273927.ly

its part of the beem groups at
http://www.lilypond.org/doc/v2.17/Documentation/notation/beams.en.html

Hope it helps

Marcos


2013/10/20 Mark Stephen Mrotek 

> Peter,
>
> ** **
>
> Does this help?
>
> ** **
>
> \version "2.16.2"
>
> ** **
>
> ** **
>
>   global = {
>
>   \key c \major
>
>   \numericTimeSignature
>
>   \time 6/8
>
> }
>
> ** **
>
> violin = \relative c'' {
>
>   \global
>
>   
>
>   c8 [ c c ] c [ c c ] |
>
>   c [ c ] c [ c ] c [ c ] |
>
>   
>
> }
>
> ** **
>
> \score {
>
>   \new Staff \violin
>
>   \layout { }
>
> }
>
> ** **
>
> Mark
>
> ** **
>
> *From:* lilypond-user-bounces+carsonmark=ca.rr@gnu.org [mailto:
> lilypond-user-bounces+carsonmark=ca.rr@gnu.org] *On Behalf Of *Peter
> Toye
> *Sent:* Sunday, October 20, 2013 10:21 AM
> *To:* lilypond-user@gnu.org
> *Subject:* Hemiola indication
>
> ** **
>
> I want to indicate a hemiola - the best method seems to be horizontal
> brackets indicating each double-length beat.
>
> I can't find anything in the documentation or snippets telling how to do
> it.
>
> What am I missing please?
>
>
> Regards,
>
> Peter
> mailto:lilyp...@ptoye.com 
> www.ptoye.com
>
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Is there any lilypond-book programer?

2013-10-19 Thread Marcos Press
Great!

Thank you very much.

Marcos.


2013/10/19 David Kastrup 

> Marcos Press  writes:
>
> > No, I add them because they are no standard Bash chars.
> > If I autocomplete the command line they appear.
> > If I execute the ls command they don't.
> > Same with the space.
> >
> > $ ls
> > Kayser-Op20-36-Estudios-Fritz Meyer-ed-Schott-Germany
> >
> > $ ls Kayser-Op20-36-Estudios-Fritz\ Meyer-ed-Schott-Germany/
> >
> > well I have remove them now :), but the space is still there.
>
> Issue 3623 http://code.google.com/p/lilypond/issues/detail?id=3623>
>
> --
> David Kastrup
>
>
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Is there any lilypond-book programer?

2013-10-18 Thread Marcos Press
No, I add them because they are no standard Bash chars.
If I autocomplete the command line they appear.
If I execute the ls command they don't.
Same with the space.

$ ls
Kayser-Op20-36-Estudios-Fritz Meyer-ed-Schott-Germany

$ ls Kayser-Op20-36-Estudios-Fritz\ Meyer-ed-Schott-Germany/

well I have remove them now :), but the space is still there.


2013/10/19 David Kastrup 

> Marcos Press  writes:
>
> > Sorry!!!
> > I miss click the reply link instead of reply-to-all.
> >
> > These was my complete path:
> >
> > ~/partes/Biblioteca/Metodos-Violin/Kayser-Op20-36-Estudios-\[Fritz\
> > Meyer-ed-Schott-Germany\]/tmp/
> >
> > simply removing the \[ and \] make the trick!
>
> Are the backslashes actually in the filenames (do they appear when you
> do ls or similar) or did you just type them because that's the way you
> need to write it on the command line?
>
> > It seams "[ ]" are not welcome as dir_names. They are, as file_name.
> > And the length is not a problem since I just try adding nearly 10 char
> more
> > and it works perfectly.
> >
> > Was these known? And I miss it?
>
> To anybody?  Maybe.  But I don't think we have an issue registered for
> it, and I doubt anybody already knows whether this is a problem with
> LilyPond-book or something else.
>
> --
> David Kastrup
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Is there any lilypond-book programer?

2013-10-18 Thread Marcos Press
Sorry!!!
I miss click the reply link instead of reply-to-all.

These was my complete path:

~/partes/Biblioteca/Metodos-Violin/Kayser-Op20-36-Estudios-\[Fritz\
Meyer-ed-Schott-Germany\]/tmp/

simply removing the \[ and \] make the trick!
It seams "[ ]" are not welcome as dir_names. They are, as file_name.
And the length is not a problem since I just try adding nearly 10 char more
and it works perfectly.

Was these known? And I miss it?


2013/10/19 David Kastrup 

>
> Please keep the list copied.
>
> Marcos Press  writes:
>
> > Absolutly right Incredible :)!!!
> >
> > Move the file to $HOME/tmp/test.lytex
> >
> > And works perfectly!
> >
> > I have no idea of the world of python, so...
> >
> > Is it posible that having a deep subdirectory tree is not a good
> situation
> > for python?
> > Or it could be more the, length of the dir_names?
>
> The error message more sounds like a problem with non-ASCII characters
> either in the directory name, or of one filename inside of a directory
> Python looks through for a match with whatever it may be looking for.
>
> It would be good if you experimented until you can figure out a minimal
> change that will cause the problem to appear or disappear (minimal
> change being just the renaming/deletion of a single directory or file,
> not a large move of everything).
>
> Then we have a chance to see whether there is something we should or
> could be doing to make Lilypond-book more resilient to the problem.
>
> --
> David Kastrup
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Is there any lilypond-book programer?

2013-10-18 Thread Marcos Press
I already try that with no luck at all.
Even so, I try it again :)

###
$ lilypond-book --pdf -o out test.lytex lilypond-book (GNU LilyPond) 2.17.28
Reading test.lytex...
...
File "/home/tdy/lilypond/usr/lib/python2.4/sre.py", line 227, in _compile
raise error, v # invalid expression
sre_constants.error: bad character range
###

So again, nothing...

Tomorrow I have time, so I think I'll try with the system.
Is there any Xubuntu user using lilypond-book? Actualy it should be the
same as any Ubuntu or Kubuntu. But who knows...

Thanks.

Marcos.


2013/10/19 David Kastrup 

> Marcos Press  writes:
>
> > Hi list!
> >
> > I'm still having problems with lilypond-book.
> > Am I doing something wrong?
> >
> > The file:
> >
> > ###
> > \documentclass[a4paper]{article}
> >
> > \begin{document}
> > Some text and now\\
> > \begin[notime]{lilypond}
> >  \relative{c4 d e f g a b c}
> > \end{lilypond}
> > Some notes.
> > \end{document}
> > ###
>
> You forgot the most important detail of the file: its name.
>
> > ###
> > $ lilypond-book --output=out --pdf test.tex
> > lilypond-book (GNU LilyPond) 2.17.28
> > Reading test.tex...
>
> Rename your file into test.lytex and run lilypond-book --pdf test.lytex
> and maybe you have more luck.
>
> --
> David Kastrup
>
>
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Is there any lilypond-book programer?

2013-10-18 Thread Marcos Press
I'm sorry!
I miss type "lilyglyphs"



2013/10/18 Urs Liska 

> ** Didn't you also have an issue with lilyglyphs because of a wrong
> character (dash instead of hyphen)?
>
> The current error message points in that direction too. So you might
> actually have something weird in your input file.
> Maybe you should send your actual file as an attachment (to rule out email
> mangling) so others can test it.
>
> Best
> Urs
>
>
>
> Marcos Press  schrieb:
>>
>> Hi list!
>>
>> I'm still having problems with lilypond-book.
>> Am I doing something wrong?
>>
>> The file:
>>
>> ###
>> \documentclass[a4paper]{article}
>>
>> \begin{document}
>> Some text and now\\
>> \begin[notime]{lilypond}
>>  \relative{c4 d e f g a b c}
>> \end{lilypond}
>> Some notes.
>> \end{document}
>> ###
>>
>> Command and terminal output (since is the only output I end up with, no
>> .aux .log , anything):
>>
>> ###
>> $ lilypond-book --output=out --pdf test.tex
>> lilypond-book (GNU LilyPond) 2.17.28
>> Reading test.tex...
>> Running `pdflatex' on file `/tmp/tmp_AuT9R.tex' to detect default page
>> settings.
>>
>> Dissecting...
>> Traceback (most recent call last):
>>   File "/home/tdy/lilypond/usr/bin/lilypond-book", line 773, in ?
>> main ()
>>   File "/home/tdy/lilypond/usr/bin/lilypond-book", line 756, in main
>> chunks = do_file (files[0])
>>   File "/home/tdy/lilypond/usr/bin/lilypond-book", line 617, in do_file
>> do_process_cmd (chunks, input_fullname, global_options)
>>   File "/home/tdy/lilypond/usr/bin/lilypond-book", line 475, in
>> do_process_cmd
>> output_files = split_output_files (options.lily_output_dir)
>>   File "/home/tdy/lilypond/usr/bin/lilypond-book", line 465, in
>> split_output_files
>> for subdir in glob.glob (os.path.join (directory,
>> '[a-f0-9][a-f0-9]')):
>>   File "/home/tdy/lilypond/usr/lib/python2.4/glob.py", line 24, in glob
>> list = glob(dirname)
>>   File "/home/tdy/lilypond/usr/lib/python2.4/glob.py", line 24, in glob
>> list = glob(dirname)
>>   File "/home/tdy/lilypond/usr/lib/python2.4/glob.py", line 24, in glob
>> list = glob(dirname)
>>   File "/home/tdy/lilypond/usr/lib/python2.4/glob.py", line 37, in glob
>> sublist = glob1(dirname, basename)
>>   File "/home/tdy/lilypond/usr/lib/python2.4/glob.py", line 50, in glob1
>> return fnmatch.filter(names,pattern)
>>   File "/home/tdy/lilypond/usr/lib/python2.4/fnmatch.py", line 47, in
>> filter
>> _cache[pat] = re.compile(res)
>>   File "/home/tdy/lilypond/usr/lib/python2.4/sre.py", line 180, in compile
>> return _compile(pattern, flags)
>>   File "/home/tdy/lilypond/usr/lib/python2.4/sre.py", line 227, in
>> _compile
>> raise error, v # invalid expression
>> sre_constants.error: bad character range
>> ###
>>
>> I had eliminate lilypond and tex with all their stuff from system
>> instalation.
>> I reinstall all (lilypond, TexLive2013).
>> It doesn't matter the system configuration.
>> And I still have the exact same problem.
>>
>> I'm really sorprised since it semas that there is no one else having
>> these problem.
>> Actually, I'm thinking on reinstalling my complete system.
>>
>> Thanks.
>> Marcos.
>>
>> --
>>
>> lilypond-user mailing list
>> lilypond-user@gnu.org
>> https://lists.gnu.org/mailman/listinfo/lilypond-user
>>
>>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Is there any lilypond-book programer?

2013-10-18 Thread Marcos Press
Yes.
Somewhere my terminal vim editor interpretates a minus sign copied from
firefox as a dash.
Now lilyglyth, thanks to you, work's prefectly :)

So I'll attach the actual file.


Thanks.
Marcos


2013/10/18 Urs Liska 

> ** Didn't you also have an issue with lilyglyphs because of a wrong
> character (dash instead of hyphen)?
>
> The current error message points in that direction too. So you might
> actually have something weird in your input file.
> Maybe you should send your actual file as an attachment (to rule out email
> mangling) so others can test it.
>
> Best
> Urs
>
>
>
> Marcos Press  schrieb:
>>
>> Hi list!
>>
>> I'm still having problems with lilypond-book.
>> Am I doing something wrong?
>>
>> The file:
>>
>> ###
>> \documentclass[a4paper]{article}
>>
>> \begin{document}
>> Some text and now\\
>> \begin[notime]{lilypond}
>>  \relative{c4 d e f g a b c}
>> \end{lilypond}
>> Some notes.
>> \end{document}
>> ###
>>
>> Command and terminal output (since is the only output I end up with, no
>> .aux .log , anything):
>>
>> ###
>> $ lilypond-book --output=out --pdf test.tex
>> lilypond-book (GNU LilyPond) 2.17.28
>> Reading test.tex...
>> Running `pdflatex' on file `/tmp/tmp_AuT9R.tex' to detect default page
>> settings.
>>
>> Dissecting...
>> Traceback (most recent call last):
>>   File "/home/tdy/lilypond/usr/bin/lilypond-book", line 773, in ?
>> main ()
>>   File "/home/tdy/lilypond/usr/bin/lilypond-book", line 756, in main
>> chunks = do_file (files[0])
>>   File "/home/tdy/lilypond/usr/bin/lilypond-book", line 617, in do_file
>> do_process_cmd (chunks, input_fullname, global_options)
>>   File "/home/tdy/lilypond/usr/bin/lilypond-book", line 475, in
>> do_process_cmd
>> output_files = split_output_files (options.lily_output_dir)
>>   File "/home/tdy/lilypond/usr/bin/lilypond-book", line 465, in
>> split_output_files
>> for subdir in glob.glob (os.path.join (directory,
>> '[a-f0-9][a-f0-9]')):
>>   File "/home/tdy/lilypond/usr/lib/python2.4/glob.py", line 24, in glob
>> list = glob(dirname)
>>   File "/home/tdy/lilypond/usr/lib/python2.4/glob.py", line 24, in glob
>> list = glob(dirname)
>>   File "/home/tdy/lilypond/usr/lib/python2.4/glob.py", line 24, in glob
>> list = glob(dirname)
>>   File "/home/tdy/lilypond/usr/lib/python2.4/glob.py", line 37, in glob
>> sublist = glob1(dirname, basename)
>>   File "/home/tdy/lilypond/usr/lib/python2.4/glob.py", line 50, in glob1
>> return fnmatch.filter(names,pattern)
>>   File "/home/tdy/lilypond/usr/lib/python2.4/fnmatch.py", line 47, in
>> filter
>> _cache[pat] = re.compile(res)
>>   File "/home/tdy/lilypond/usr/lib/python2.4/sre.py", line 180, in compile
>> return _compile(pattern, flags)
>>   File "/home/tdy/lilypond/usr/lib/python2.4/sre.py", line 227, in
>> _compile
>> raise error, v # invalid expression
>> sre_constants.error: bad character range
>> ###
>>
>> I had eliminate lilypond and tex with all their stuff from system
>> instalation.
>> I reinstall all (lilypond, TexLive2013).
>> It doesn't matter the system configuration.
>> And I still have the exact same problem.
>>
>> I'm really sorprised since it semas that there is no one else having
>> these problem.
>> Actually, I'm thinking on reinstalling my complete system.
>>
>> Thanks.
>> Marcos.
>>
>> --
>>
>> lilypond-user mailing list
>> lilypond-user@gnu.org
>> https://lists.gnu.org/mailman/listinfo/lilypond-user
>>
>>


test.tex
Description: TeX document
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Is there any lilypond-book programer?

2013-10-18 Thread Marcos Press
Hi list!

I'm still having problems with lilypond-book.
Am I doing something wrong?

The file:

###
\documentclass[a4paper]{article}

\begin{document}
Some text and now\\
\begin[notime]{lilypond}
 \relative{c4 d e f g a b c}
\end{lilypond}
Some notes.
\end{document}
###

Command and terminal output (since is the only output I end up with, no
.aux .log , anything):

###
$ lilypond-book --output=out --pdf test.tex
lilypond-book (GNU LilyPond) 2.17.28
Reading test.tex...
Running `pdflatex' on file `/tmp/tmp_AuT9R.tex' to detect default page
settings.

Dissecting...
Traceback (most recent call last):
  File "/home/tdy/lilypond/usr/bin/lilypond-book", line 773, in ?
main ()
  File "/home/tdy/lilypond/usr/bin/lilypond-book", line 756, in main
chunks = do_file (files[0])
  File "/home/tdy/lilypond/usr/bin/lilypond-book", line 617, in do_file
do_process_cmd (chunks, input_fullname, global_options)
  File "/home/tdy/lilypond/usr/bin/lilypond-book", line 475, in
do_process_cmd
output_files = split_output_files (options.lily_output_dir)
  File "/home/tdy/lilypond/usr/bin/lilypond-book", line 465, in
split_output_files
for subdir in glob.glob (os.path.join (directory, '[a-f0-9][a-f0-9]')):
  File "/home/tdy/lilypond/usr/lib/python2.4/glob.py", line 24, in glob
list = glob(dirname)
  File "/home/tdy/lilypond/usr/lib/python2.4/glob.py", line 24, in glob
list = glob(dirname)
  File "/home/tdy/lilypond/usr/lib/python2.4/glob.py", line 24, in glob
list = glob(dirname)
  File "/home/tdy/lilypond/usr/lib/python2.4/glob.py", line 37, in glob
sublist = glob1(dirname, basename)
  File "/home/tdy/lilypond/usr/lib/python2.4/glob.py", line 50, in glob1
return fnmatch.filter(names,pattern)
  File "/home/tdy/lilypond/usr/lib/python2.4/fnmatch.py", line 47, in filter
_cache[pat] = re.compile(res)
  File "/home/tdy/lilypond/usr/lib/python2.4/sre.py", line 180, in compile
return _compile(pattern, flags)
  File "/home/tdy/lilypond/usr/lib/python2.4/sre.py", line 227, in _compile
raise error, v # invalid expression
sre_constants.error: bad character range
###

I had eliminate lilypond and tex with all their stuff from system
instalation.
I reinstall all (lilypond, TexLive2013).
It doesn't matter the system configuration.
And I still have the exact same problem.

I'm really sorprised since it semas that there is no one else having these
problem.
Actually, I'm thinking on reinstalling my complete system.

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


Re: Lilypond-book help need!

2013-10-04 Thread Marcos Press
Thanks!
I'll make another question then.


2013/10/4 Marc Hohl 

> Hi Marcos,
>
> Am 02.10.2013 17:08, schrieb Marcos Press:
>
>  Thanks for answering!
>>
>> My file is the following example from lilypond manuals:
>>
>> ##
>>
>> \documentclass[]{article}
>>
>> \begin{document}
>>
>> Normal LaTeX text.
>>
>> \begin{lilypond}
>> \relative c'' {
>>a4 b c d
>> }
>> \end{lilypond}
>>
>> More LaTeX text, and options in square brackets.
>>
>> \begin{lilypond}[fragment,**relative=2,quote,staffsize=26,**verbatim]
>> d4 c b a
>> \end{lilypond}
>> \end{document}
>>
>> 
>>
>
> Ok, thanks.
>
>
>
>> Actualy, it doesn'd matter what the content is, it always gives the same
>> error.
>> Since I've never use LaTeX before, I try to start compiling something
>> that its supose to work.
>>
>
> I am not an expert here, but lilypond-book needs LaTeX to determine
> the correct line witdh for the included lilypond code fragments.
> Perhaps there is something wrong with your LaTeX installation?
> (jest a wild guess ...)
> [...]
>
>
>> #
>>
>> Ejecutando «latex» sobre el archivo «/tmp/tmpkgEcm5.tex» para detectar
>> los ajustes de página predeterminados.
>>
>> Diseccionando...
>> Traceback (most recent call last):
>>File "/usr/bin/lilypond-book", line 766, in 
>>  main ()
>>File "/usr/bin/lilypond-book", line 749, in main
>>  chunks = do_file (files[0])
>>File "/usr/bin/lilypond-book", line 610, in do_file
>>  do_process_cmd (chunks, input_fullname, global_options)
>>File "/usr/bin/lilypond-book", line 470, in do_process_cmd
>>  output_files = split_output_files (options.lily_output_dir)
>>File "/usr/bin/lilypond-book", line 460, in split_output_files
>>  for subdir in glob.glob (os.path.join (directory,
>> '[a-f0-9][a-f0-9]')):
>>File "/usr/lib/python2.7/glob.py", line 27, in glob
>>  return list(iglob(pathname))
>>File "/usr/lib/python2.7/glob.py", line 58, in iglob
>>  for dirname in dirs:
>>File "/usr/lib/python2.7/glob.py", line 59, in iglob
>>  for name in glob_in_dir(dirname, basename):
>>File "/usr/lib/python2.7/glob.py", line 78, in glob1
>>  return fnmatch.filter(names, pattern)
>>File "/usr/lib/python2.7/fnmatch.**py", line 54, in filter
>>  _cache[pat] = re.compile(res)
>>File "/usr/lib/python2.7/re.py", line 190, in compile
>>  return _compile(pattern, flags)
>>File "/usr/lib/python2.7/re.py", line 242, in _compile
>>  raise error, v # invalid expression
>> sre_constants.error: bad character range
>>
>
> Hm, sorry, can't help you with that.
>
> HTH,
>
> Marc
>
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Lilypond-book help need!

2013-10-02 Thread Marcos Press
Thanks for answering!

My file is the following example from lilypond manuals:

##

\documentclass[]{article}

\begin{document}

Normal LaTeX text.

\begin{lilypond}
\relative c'' {
  a4 b c d
}
\end{lilypond}

More LaTeX text, and options in square brackets.

\begin{lilypond}[fragment,relative=2,quote,staffsize=26,verbatim]
d4 c b a
\end{lilypond}
\end{document}



Actualy, it doesn'd matter what the content is, it always gives the same
error.
Since I've never use LaTeX before, I try to start compiling something that
its supose to work.
Not the

\begin{lilypond}
\end{lilypond}

or

\lilypond{}

formats works at all. The two ways shows the exact same error.
These is the complet output (I know it is preferible to attach a file, but
since its short.. ;)

#

Ejecutando «latex» sobre el archivo «/tmp/tmpkgEcm5.tex» para detectar los
ajustes de página predeterminados.

Diseccionando...
Traceback (most recent call last):
  File "/usr/bin/lilypond-book", line 766, in 
main ()
  File "/usr/bin/lilypond-book", line 749, in main
chunks = do_file (files[0])
  File "/usr/bin/lilypond-book", line 610, in do_file
do_process_cmd (chunks, input_fullname, global_options)
  File "/usr/bin/lilypond-book", line 470, in do_process_cmd
output_files = split_output_files (options.lily_output_dir)
  File "/usr/bin/lilypond-book", line 460, in split_output_files
for subdir in glob.glob (os.path.join (directory, '[a-f0-9][a-f0-9]')):
  File "/usr/lib/python2.7/glob.py", line 27, in glob
return list(iglob(pathname))
  File "/usr/lib/python2.7/glob.py", line 58, in iglob
for dirname in dirs:
  File "/usr/lib/python2.7/glob.py", line 59, in iglob
for name in glob_in_dir(dirname, basename):
  File "/usr/lib/python2.7/glob.py", line 78, in glob1
return fnmatch.filter(names, pattern)
  File "/usr/lib/python2.7/fnmatch.py", line 54, in filter
_cache[pat] = re.compile(res)
  File "/usr/lib/python2.7/re.py", line 190, in compile
return _compile(pattern, flags)
  File "/usr/lib/python2.7/re.py", line 242, in _compile
raise error, v # invalid expression
sre_constants.error: bad character range



Thanks again for any help!

Marcos


2013/10/2 Marc Hohl 

> Am 30.09.2013 19:56, schrieb Marcos Press:
>
>  I'm not sure what is happening...
>>
>> LaTeX does not know any lilypond package.
>>
>
> That's true, AFAIK.
>
>
>  Lilypond-book gives these error always:
>>
>> 
>> ~$ lilypond-book --pdf --output=out file.lytex
>>
>> [...]
>>
>> File "/usr/lib/python2.7/re.py", line 242, in _compile
>>  raise error, v # invalid expression
>> sre_constants.error: bad character range
>>
>> 
>>
>> and nothing else happends.
>>
>> I can submit any info you ask for.
>>
>
> Without /any/ hint about the contents of the file you want to process,
> it is merely impossible to tell you what's wrong.
>
> Can you post a minimal example? Reduce your file so that it is
> a) as small as possible and
> b) it still shows the error you describe.
>
> HTH,
>
> Marc
>
>
> __**_
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/**listinfo/lilypond-user<https://lists.gnu.org/mailman/listinfo/lilypond-user>
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Lilypond-book help need!

2013-09-30 Thread Marcos Press
I'm not sure what is happening...

LaTeX does not know any lilypond package.
Lilypond-book gives these error always:


~$ lilypond-book --pdf --output=out file.lytex

[...]

File "/usr/lib/python2.7/re.py", line 242, in _compile
raise error, v # invalid expression
sre_constants.error: bad character range



and nothing else happends.

I can submit any info you ask for.

Thanks.

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


Lilypond-Book not compiling LaTeX

2013-09-27 Thread Marcos Press
Hi!

Finaly I decide to learn LaTeX, and integrateit with Lilypond.

I've been writting in LaTeX with the usuall learning curbe problems. And
finaly arrive to the moment of putting some music within the text.
So I type many diferent trys, and nothing works. Always the same output.
So I decide to try with a Lilypond example from the web.
I use the one that can be find here:
http://www.lilypond.org/doc/v2.16/Documentation/usage/lilypond_002dbook-templates.html
#
\documentclass[]{article}

\begin{document}

Normal LaTeX text.

\begin{lilypond}
\relative c'' {
  a4 b c d
}
\end{lilypond}

More LaTeX text, and options in square brackets.

\begin{lilypond}[fragment,relative=2,quote,staffsize=26,verbatim]
d4 c b a
\end{lilypond}
\end{document
#

Then, the command and exit status:
#
lilypond-book -f latex --output out podemos.tex

lilypond-book (GNU LilyPond) 2.16.0
Leyendo podemos.tex...
Ejecutando «latex» sobre el archivo «/tmp/tmp8NiLBQ.tex» para detectar los
ajustes de página predeterminados.

Diseccionando...
Traceback (most recent call last):
  File "/usr/bin/lilypond-book", line 766, in 
main ()
  File "/usr/bin/lilypond-book", line 749, in main
chunks = do_file (files[0])
  File "/usr/bin/lilypond-book", line 610, in do_file
do_process_cmd (chunks, input_fullname, global_options)
  File "/usr/bin/lilypond-book", line 470, in do_process_cmd
output_files = split_output_files (options.lily_output_dir)
  File "/usr/bin/lilypond-book", line 460, in split_output_files
for subdir in glob.glob (os.path.join (directory, '[a-f0-9][a-f0-9]')):
  File "/usr/lib/python2.7/glob.py", line 27, in glob
return list(iglob(pathname))
  File "/usr/lib/python2.7/glob.py", line 58, in iglob
for dirname in dirs:
  File "/usr/lib/python2.7/glob.py", line 58, in iglob
for dirname in dirs:
  File "/usr/lib/python2.7/glob.py", line 59, in iglob
for name in glob_in_dir(dirname, basename):
  File "/usr/lib/python2.7/glob.py", line 78, in glob1
return fnmatch.filter(names, pattern)
  File "/usr/lib/python2.7/fnmatch.py", line 54, in filter
_cache[pat] = re.compile(res)
  File "/usr/lib/python2.7/re.py", line 190, in compile
return _compile(pattern, flags)
  File "/usr/lib/python2.7/re.py", line 242, in _compile
raise error, v # invalid expression
sre_constants.error: bad character range
###

It doesn't matter what I write in the file. The result is always the same.

Any help will be apreciated :)!

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


Re: [ANNOUNCE] Scale Matcher website built with LilyPond

2013-08-25 Thread Marcos Press
Same bug with the "Select a standard chord:" box.

Xubuntu 13.04 x64 on firefox 23.0

For the rest. Great Work!!!


2013/8/25 Mike Blackstock 

> re "I'm no artist" - that makes two of us.
> You could  just use this bigger version of your favicon:
> http://blackstockweb.ca/logo.png,, which doesn't have to actually be seen
> anywhere on your page; then the line ' href="pathtologo/logo.png" />' in the head will give the bottom 'scrape'
> instead of the top one when the page is linked to:
> http://blackstockweb.ca/logo-demo.png
>
> Just a thought. Great app; I'll be using it myself - thanks!
> -Mike
>
>
> On Sat, Aug 24, 2013 at 9:50 PM, Adam Spiers  > wrote:
>
>> Thanks.  You mean like a logo icon?  I'd be delighted to use one, but
>> I'm no artist ...
>>
>> On 25 August 2013 02:20, Mike Blackstock 
>> wrote:
>> > Wow, terrific. Any thoughts on adding a graphic that will grab more
>> > attention in links to the site [ie Facebook, Google+ ...] ?
>> >
>> >
>> > On Sat, Aug 24, 2013 at 7:51 AM, Adam Spiers <
>> lilypond-u...@adamspiers.org>
>> > wrote:
>> >>
>> >> Hi all,
>> >>
>> >> Thought you might be interested to hear that I built a new music
>> >> harmony website which uses LilyPond to dynamically generate images of
>> >> chords and scales:
>> >>
>> >> http://scalematcher.adamspiers.org/
>> >>
>> >> Look in the FAQ for details of how to see the LilyPond source code ;-)
>> >>
>> >> Now I have to figure out how to install LilyPond 2.17.x on Debian 6 in
>> >> order to be able to use \markLengthOn :-/
>> >>
>> >> Regards,
>> >> Adam
>> >>
>> >> ___
>> >> lilypond-user mailing list
>> >> lilypond-user@gnu.org
>> >> https://lists.gnu.org/mailman/listinfo/lilypond-user
>> >
>> >
>>
>
>
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re:

2013-08-12 Thread Marcos Press
Use to have Export to Lylipond in a menu or something like that. But I do
prefer it without anchovies.

In the old days, before the pizza, I use to export others formats to midi
or MusicXML or PS and then to Lylipond with diferent small free software
without having to do that thing of the 'phrygian mode'.

The apropos output gives:

# apropos 2ly

abc2ly (1)   - manual page for abc2ly (LilyPond) 2.16.0
etf2ly (1)   - manual page for etf2ly (LilyPond) 2.16.0
midi2ly (1)  - manual page for midi2ly (LilyPond) 2.16.0
musicxml2ly (1)  - manual page for musicxml2ly (LilyPond) 2.16.0

Read some of does manuals after reading the lilypond docs of Converting
from other 
formats

You can start from there...

Luck!


2013/8/12 Robert Schmaus 

> I think you'll have to go to the file menu, choose "pizza with anchovies
> and blue cheese" from there, and then sing your national anthem rapidly in
> phrygian mode.
>
> Or did I misunderstand your question?
>
>
> Am 8/12/13 3:30 AM, schrieb Christopher Reed:
>
>> hello can someone please help me export my file to lilypond it will not
>> do it for some reason :(
>>
>>
>>
>> __**_
>> lilypond-user mailing list
>> lilypond-user@gnu.org
>> https://lists.gnu.org/mailman/**listinfo/lilypond-user
>>
>>
> __**_
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/**listinfo/lilypond-user
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: more Tuplets...

2013-01-24 Thread Marcos Press
> With the hopefully-2.17.11 syntax this would be
>
> {
>   \time 6/8
>   \tuplet 4/6 4. { e16 fis g gis a ais b b }
> }
>
> Now this still is mathematics.  It seems closer to the kind of
> mathematics you'd use in music.  Though I am not sure I'd not prefer
>

Well, calculating tuplets is much more mathematics than music :)


>
> {
>   \time 6/8
>   \tuplet 2/3 4. { e16[ fis] g[ gis] a[ ais] b[ b] }
> }
>
> instead, but admittedly, that has a slightly different accent structure.
>
> --
> David Kastrup
>

I think I'll prefer just a change of name of the function and making the
spanner an inside parameter to \tuplet and not to \time.

Thanks David for always been there!!!

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


Re: more Tuplets...

2013-01-24 Thread Marcos Press
Thanks Noeck!


> #(ly:make-moment 6 8) produces separately grouped tuplets every 6/8 -
> which is probably a full measure in your case (if you use \times 6/8).
>

I asume here you are talking about \time and not \times (or future \tuplet)
function


> In general, if you want to group tuplets after x/y, the function
> #(ly:make-moment x y) will produce this duration.
>
> If you want the triplets lasting half of such a 6/8 measure, you can use
> 3/8:
>

You realy hit the spot! The thing is that in my mind I assign the \set
tupletSpannerDuration to the \times function and not to the \time function.
It seams stupid, but it really makes a big diference.
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: more Tuplets...

2013-01-23 Thread Marcos Press
Interesting!, a way for simplifying things!

But the confusion with tuplets, starts when I have to use then in
non-regular \time or non-regular tuplets like my example that its both
things at the same time.

In a \time 4/4 or 2/4 its easy to grasp the use of a standard \times 2/3
But in a \time 6/8 with a \times 6/4 I start getting confused!

Again thanks for the news of the \tuplets function!
And thanks for all the answers!

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


Re: more Tuplets...

2013-01-23 Thread Marcos Press
Hi Kieren,


> Yes, because 1/3 is not the moment you want (I think).
>
> Try
> set tupletSpannerDuration = #(ly:make-moment 6 8)
>

Actualy the moment I want would be the one that I can get with separated
\times. Like:

\times 6/4 { e16[ fis g gis] }
\times 6/4 { a16[ ais b b] }

But, wich would be the moment with only one \times?
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


more Tuplets...

2013-01-23 Thread Marcos Press
Hi list!
I always have some problems with the tuplets, but generaly I end up findig
a solusion by my own. Today is not the day :)

The problem is more with the spanner but I'm not sure the tuplet is
configured correcly.
Here, all seams ok.
Compile with no error and perfect graphic with one spanner over the
complete tuplet.

%
\version "2.15.40"

\relative d'' {
  \clef G
  \time 6/8
  \key a \major
  a2.
  % \set tupletSpannerDuration = #(ly:make-moment 1 3)
  \times 6/4 { e16[ fis g gis] a[ ais b b] }
  a2. | a2. | a2. | a2. | a2.
  \bar "|."
}
%

Uncommenting the \set line produce extra spanner lines over the nexts bars.
And adding again the tuplet, adds nested spanners over the nexts bars.
I'm pretty sure the tuplet numbers are wrong and the SpannerDuration
moments are wrong too :)

Can anyone help me with the complex simplicity of tuplets?
Thanks!!!
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Little Question!

2004-05-17 Thread Marcos Press
Hi. First of all, I'm sorry if my english it's not clear, but I'm not english 
speaker and less writer.

I start using LilyPond a month ago, and it feels great realy great. But I have 
a problem with the \header block. I coudn't find how to format the text in 
it. I want, for example, to reduce the font size, and I coudn't find how.
As you (developers of LilyPond), I'm very interested in making my scores look 
great and confortable to readers, and I think that having a way of making 
everything formated it's the way. That's why I chose LiliPond. But, how do I 
format the score in the paper? (some information about this I found)
and, how do I format the \header block?

Thank you!!

Marcos
www.lafurca.com


___
lilypond-user mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/lilypond-user