Re: \woodwind-diagram horizontal?

2018-04-22 Thread Jaime Oliver La Rosa

thanks! and will do...

best,

J


On 04/22/2018 02:55 AM, Malte Meyn wrote:



Am 22.04.2018 um 04:56 schrieb Jaime Oliver La Rosa:

Hi,

Is it possible to place woodwind-diagrams horizontally?

best,

J


Yes it is. Please always give a minimal working example (see 
http://lilypond.org/tiny-examples.html) and include your LilyPond 
version. Without such an example I had to search for woodwind diagrams 
first because I didn’t know how to create them.


\version "2.19.81"

{
  c'-\markup \rotate #90 \woodwind-diagram #'piccolo #'()
}

___
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


\woodwind-diagram horizontal?

2018-04-21 Thread Jaime Oliver La Rosa

Hi,

Is it possible to place woodwind-diagrams horizontally?

best,

J


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


Re: Introducing Hacklily, another online LilyPond editor

2018-01-03 Thread Jaime Oliver La Rosa

great work joshua!

J


On 01/03/2018 12:19 AM, Joshua Netterfield wrote:

Hi all,

I've been working on an online LilyPond editor in my spare time, and 
would appreciate your feedback. You can use it as a scratchpad, or 
sign in with a GitHub account to save sheet music directly there.


Try it at https://www.hacklily.org

It's inspired by great projects like LilyBin and Overleaf.

I'm sharing this fairly early on, and would prefer if you didn't share 
this broadly yet so I can scale it. I also recommend you avoid relying 
on it for anything too serious. You can give me feedback by replying 
to me, or on GitHub (https://github.com/hacklily/hacklily).


I hope you find it useful and am looking forward to your feedback.

Best,
Joshua Netterfield



___
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: Error with Frescobaldi and python-poppler

2017-09-23 Thread Jaime Oliver La Rosa

Indeed it is an Ubuntu package.

This one worked for me: 
https://answers.launchpad.net/~canonical-foundations/+archive/ubuntu/python3.6-as-default/+files/python3-poppler-qt5_0.24.2-3build1_amd64.deb


The one I installed through apt did not work out.

Thanks to everyone!

best,

J


On 09/23/2017 11:38 AM, David Wright wrote:

On Sat 23 Sep 2017 at 13:11:14 (+0200), Noeck wrote:

Hi,

I used python3-poppler-qt5_0.24.2-3build1_amd64.deb, I think from debian
despite I have a Ubuntu installation.

python3-poppler-qt5_0.24.2-3build1_amd64.deb looks like an Ubuntu package.

http://ftp.us.debian.org/debian/pool/main/p/python-poppler-qt5/python3-poppler-qt5_0.24.2-3+b1_amd64.deb
is a Debian package, likely built from the same source (though I would
check). As you probably know, but for the benefit of others, .deb just
signifies the format of the package, an ar archive containing a couple
of typically .tar.gz archives.

Cheers,
David.

___
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


Error with Frescobaldi and python-poppler

2017-09-22 Thread Jaime Oliver La Rosa

Hi all,

I am encountering this problem when trying to engrave any score in 
Frescobaldi. The score compiles fine, but I can't see the preview, and I 
get the error below as described in this post:


https://github.com/wbsoft/frescobaldi/issues/838

Is there a known solution for this?

I am using Ubuntu 17.04, Lilypond 2.18.2-7 and Frescobaldi 
3.0.0~git20161001.0.eec60717+ds1-2


best,

J

ERROR MESSAGE:

An internal error has occurred:

Traceback (most recent call last):

File 
"/usr/share/frescobaldi/frescobaldi_app/musicview/pointandclick.py", 
line 44, in links


return _cache[document]

File "/usr/lib/python3.5/weakref.py", line 394, in __getitem__

return self.data[ref(key)]

KeyError: 

During handling of the above exception, another exception occurred:

Traceback (most recent call last):

File "/usr/share/frescobaldi/frescobaldi_app/musicview/widget.py", line 
116, in openDocument


self._links = pointandclick.links(document)

File 
"/usr/share/frescobaldi/frescobaldi_app/musicview/pointandclick.py", 
line 54, in links


t = textedit.link(link.url())

File "/usr/share/frescobaldi/frescobaldi_app/textedit.py", line 48, in link

m = textedit_match(url)

TypeError: expected string or bytes-like object

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


Re: encapsulating woodwind diagrams

2017-06-13 Thread Jaime Oliver La Rosa

that works! thanks...
J

On 06/13/2017 09:51 AM, caag...@gmail.com wrote:

Try removing the brackets ({ ... }) around the \markup.

On 06/13/2017 04:46 PM, Jaime Oliver La Rosa wrote:

Hi all,

I am using the following code to place diagrams in a score:

c^\markup
 \center-column {
\override #'(size . .75)
\override #'(thickness . 0.05){
\woodwind-diagram
   #'flute-b-extension
   #'((cc . (one1h three))
  (lh . (b  gis))
  (rh . (d dis ees cis c b)))
 }
   }

however, since I have several of these, I'd like to store them as 
separate encapsulated commands that I'd like to call such as


position1 = {\markup
 \center-column {
\override #'(size . .75)
\override #'(thickness . 0.05){
\woodwind-diagram
   #'flute-b-extension
   #'((cc . (one1h three))
  (lh . (b  gis))
  (rh . (d dis ees cis c b)))
 }
   }

}

And then call it in the score with

c^\position1

but I get all sorts of errors. Not sure how to proceed. Can anyone 
point me to some information?


best,

J


___
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


encapsulating woodwind diagrams

2017-06-13 Thread Jaime Oliver La Rosa

Hi all,

I am using the following code to place diagrams in a score:

c^\markup
\center-column {
   \override #'(size . .75)
   \override #'(thickness . 0.05){
   \woodwind-diagram
  #'flute-b-extension
  #'((cc . (one1h three))
 (lh . (b  gis))
 (rh . (d dis ees cis c b)))
}
  }

however, since I have several of these, I'd like to store them as 
separate encapsulated commands that I'd like to call such as


position1 = {\markup
\center-column {
   \override #'(size . .75)
   \override #'(thickness . 0.05){
   \woodwind-diagram
  #'flute-b-extension
  #'((cc . (one1h three))
 (lh . (b  gis))
 (rh . (d dis ees cis c b)))
}
  }

}

And then call it in the score with

c^\position1

but I get all sorts of errors. Not sure how to proceed. Can anyone point 
me to some information?


best,

J


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