Midi2Lily

2023-12-18 Thread Cynthia Karl
--- Begin Message --- I mentioned previously that I wrote a program to convert MIDI files to LilyPond files. That program is called MidiToLily and it’s now freely available on GitHub. It’s a console app, doesn’t have an installer, and doesn’t store things in the registry or anywhere else. It

Puzzled about downloadable Linux files in lilypond.org

2021-02-22 Thread John Karl
When I browse to the page onLIlypond.org  headed "Downloads for LilyPond 2.22.0”  and then click on the “For Users” entry titled “Unix (generic packages for GNU/Linux), I see a list of two files under “Download”, which purport to be 32bit and 64bit versions of

Re: Instructions to install lilypond onto Raspberry Pi

2020-01-17 Thread karl
y root. You might prefer some other location than /usr/local/guile Regards, /Karl Hammar

Re: Poster for music engraving conference

2019-12-05 Thread karl
aders: . quality in detail . excellent print quality . one source, multiple output variations like Simon Albrecht pointed to, and which I was thinking about . flexibility, whatever you need, it can be done Do you have any input on thoose, or do you suggest some other poster topic ? Regards, /Karl Hammar

Re: Poster for music engraving conference

2019-12-04 Thread karl
should be aye catching. Unfortunable that amounts mostly to the cover, not to the content... My experience with various choir directors etc. is that if your beutiful scores have some flaw (e.g. a wrong note whatever) they prefer thoose crappy copies of some crappy copy. Regards, /Karl Hammar

Re: Poster for music engraving conference

2019-12-04 Thread karl
done something similar for other > conferences? I could do a poster about my workflow and what features it brings me. I'd also much like to attend but I cannot afford the travel expenses. Regarding lilypond in general I dont know what that kind of poster would contain, the lerning manual in a poster format ? Regards, /Karl Hammar

Re: Polymetric Polyphonic Notation: Only Show Initial Time Signature.

2019-11-24 Thread karl
ignature. ... Why not have the time sig stuff and the music in separate variables: BS = { \initial_stuff \set_to_34 s2. \set_to_68 s2. ... } mus_a = { ... } mus_b = { ... } \score { << \new Staff { << \BS \mus_a >> } \new Staff { << \BS \mus_b >> } >> } Regards, /Karl Hammar

Re: drawing a range reguardless of transposition

2019-11-14 Thread karl
tions are possible > at all... The other way around, search for "ambitus" in the manual to see how to make lilypond print out the range used. Regards, /Karl Hammar

Re: Invisible midi layer for specific measures

2019-11-11 Thread karl
Paolo: ... > I would like to add an invisible midi layer of notes to the > previous ones ... Use this template: \score { << % displayed music >> \layout { } } \score { \unfoldRepeats << % midi music >> \midi { } }

Re: midiPanPosition in midi context block

2019-11-08 Thread karl
{ \set Staff.midiPanPosition = #-1.0 } midiAlt = { \set Staff.midiPanPosition = #1.0 } \include "song.ily" %%% file song_b.ly \version "2.19.83" midiSop = { \set Staff.midiPanPosition = #-0.5 } midiAlt = { \set Staff.midiPanPosition = #0.5 } \include "song.ily" %%% I.e. when running lilypond on song_a.ly vs. song_b.ly, you will get different pan positions. There is little more complex example in: http://aspodata.se/git/musik/anonymous/es_ist_ein_ros_entsprungen/ Regards, /Karl Hammar

Re: Blackend ligatures in mensural notation

2019-11-08 Thread karl
Christian: > Just found another way: > \once \override NoteHead.style = #'blackpetrucci > g\breve*3/4 ... Thanks, I'll use that instead of my former hack. Regards, /Karl Hammar

Re: Blackend ligatures in mensural notation

2019-11-07 Thread karl
Hans Åberg: ... > It is a nice text Thanks. > you might translate it into English ... Patches and translations are welcome ... Regards, /Karl Hammar

Re: Blackend ligatures in mensural notation

2019-11-06 Thread karl
Hans Åberg: > Typo: “accent” in Swedish is spelt the same. :-) Ok, fixed. Regards, /Karl Hammar

Re: Blackend ligatures in mensural notation

2019-11-06 Thread karl
/victoria/o_quam_gloriosum/motet/all.pdf http://aspodata.se/git/musik/TomasLuisdeVictoria/o_quam_gloriosum/motet/ See page 7, mid second system, bassus, at "agnum", in the pdf. Line 61-63 in a.ly Hopefully there is better ways to do it today. Regards, /Karl Hammar

Re: Graphic lines create

2019-11-05 Thread karl
Karl: > Reggie: > > Karl Hammar wrote ... > > > zz = \markup\postscript "0 1 360 5 mul { cos 0.01 mul 0.002 add .01 exch > > > rlineto } for stroke" > > > > > > \relative c'' { > > > c4^\zz c c c | > > > c c c c | > &

Re: Graphic lines create

2019-11-05 Thread karl
> > there is also a \markup\path command that possible could be useful > > since you want svg output. ... > If you use \markup \postscript then am I correct in thinking that the > lines won't output in SVG, right? You have the file, why don't you test it to see if it does or not ? Regards, /Karl Hammar

Re: Graphic lines create

2019-11-05 Thread karl
Reggie: > Karl Hammar wrote ... > > To just do something curvy, do something like: > > > > zz = \markup\postscript "0 1 360 5 mul { cos 0.01 mul 0.002 add .01 exch > > rlineto } for stroke" > > > > \relative c'' { > > c4^\zz c c c | >

Re: Graphic lines create

2019-11-05 Thread karl
nd forth :( To just do something curvy, do something like: zz = \markup\postscript "0 1 360 5 mul { cos 0.01 mul 0.002 add .01 exch rlineto } for stroke" \relative c'' { c4^\zz c c c | c c c c | } there is also a \markup\path command that possible could be useful since you want

Re: LilyPond, LilyPond snippets and the GPL

2019-10-30 Thread karl
mbedded PostScript % Careful with double % as comment prefix. % Any %%X comment is interpreted as DSC comments. % TODO: use dicts or prefixes to prevent namespace pollution. /pdfmark where // Regards, /Karl Hammar

Re: Puzzled about r1 issue in 3/4 time

2019-10-24 Thread Cynthia Karl via lilypond-user
> From: Michael Wagner > Subject: Puzzled about r1 issue in 3/4 time > Date: October 23, 2019 at 2:59:06 PM CDT > To: lilypond-user@gnu.org > > > I am seeing some behavior I don’t understand. I have ended the music for > “Silver Bells” into lilypond, and I am seeing a puzzling error. > >

Re: Makefile help!

2019-10-20 Thread karl
east, it seems to work... :) ... Great. You could add: VPAHT %.pdf PDF/piano-solo:PDF/piano-primo:PDF/piano-secundo:PDF/piano-duo VPATH %.midi MIDI/piano-solo:MIDI/piano-primo:MIDI/piano-secundo:MIDI/piano-duo to give make a chance to find the target files and check if they need to be remade.

Re: Makefile help!

2019-10-20 Thread karl
> Karl Hammar wrote > > Where have you found that? > > In the LilyPond documentation: > http://lilypond.org/doc/v2.19/Documentation/usage/make-and-makefiles Ok, that Makefile has a VPATH which makes sure make finds the pdf's, but the MIDI directory is missing in the VPATH.

Re: Makefile help!

2019-10-20 Thread karl
foxfanfare: > Karl Hammar wrote > > piano-solo.%.pdf: piano-solo.%.ly \ > > $(general) \ > > dialogs.%.ily \ > > global.%.ily \ > > notes.piano-solo.%.ily \ > > pedals.%.ily > > ... > > Little update for those interested by t

Re: Makefile help!

2019-10-20 Thread karl
. > Does someone knows how I can test if the filename contains for instance > versionA in it, then if true, move it to its specific folder? I am > struggling with that problem for several days now but I'm not able to find > the solution... mv *v

Re: Makefile help!

2019-10-16 Thread karl
ttp://aspodata.se/git/musik/bin/depend_ly Regards, /Karl Hammar ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Why does skip cause extender line to grow?

2019-10-09 Thread Patrick Karl
On 10/8/19 1:58 PM, Kieren MacMillan wrote: Hi Patrick, I don't understand why the extender includes the d4 in the third measure. Because you didn’t tell it to stop extending. ;) I thought the single "__" initiated an extender that ended either at the end of the current note, in the case of

Why does skip cause extender line to grow?

2019-10-08 Thread Patrick Karl
Consider the following snippet: \version "2.19.83" music = \relative c' {     c1~ c1     d4 e f g } words = \lyricmode {  Tra __  \skip 1 la la la } \score { \new Staff \music \addlyrics \words } The output is (also attached): I don't understand why the extender includes the d4 in the

Re: drinking song symbols

2019-09-20 Thread karl
really worth it when making small symbols. Don't get me wrong, it looks fine, but there isn't much different compared to a simpler symbol. Also, I think it shouldn't have to much detail, to make it easier to see/interpret under dim conditi

Re: drinking song symbols

2019-09-20 Thread karl
You got some nice looking wineglasses there, but more detail isn't really worth it when making small symbols. Cheers, /Karl Hammar ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: drinking song symbols

2019-09-20 Thread karl
e distance from top system line to top of glass sybol, I get the same value for both the whineGlass and my postscript version (when using gv's x-y position). Regards, /Karl Hammar ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Improving ly files readability

2019-09-20 Thread karl
cludes to keep the files size down. Regards, /Karl Hammar ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: drinking song symbols

2019-09-18 Thread karl
2.2 2.7 3.8 2 5 Z > M -.1 3.6 L 2.3 3.6) >.1 >;.6 .6 ;; <= change scale here, e.g.: >.5 .5 >#f) I have to go down to .2 .2 scaling to get the score on 2 pages, but then the wine glass is too small. Regards, /karl Hammar _

Re: drinking song symbols

2019-09-18 Thread karl
Jacques Menu: ... > Now, how about a full 12xn table service? ... What is that ? Regards, /Karl Hammar ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Drinking song symbols

2019-09-18 Thread karl
probably should change that. Regards, /Karl Hammar ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: drinking song symbols

2019-09-18 Thread karl
lineto 1 0.7 lineto 1 1.5 lineto 0.3 3 lineto 1.7 3 lineto 1 1.5 lineto stroke " } Regards, /Karl Hammar ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Fwd: Re: drinking song symbols

2019-09-18 Thread karl
ar ##x1f377 Good suggestion, but it is kind of too much detail, I think. And it makes the score take up 3 pages instead of 2, guess that can be solved by makeing it smaller. Regards, /Karl Hammar ___ lilypond-user mailing list lilypond-user@gnu.org h

drinking song symbols

2019-09-17 Thread karl
someone would be interested in improving the design, currently it is a simple postscript markup: kippis = \markup { \postscript " 0 0.5 moveto 2 0.5 lineto stroke 1 0.5 moveto 1 1.5 lineto 0.3 3 lineto 1.7 3 lineto 1 1.5 lineto stroke " } Regards, /K

Re: Creating combined manuscript/ruled paper

2019-09-03 Thread karl
ineto stroke /y y yst add def } repeat /y y ysep add def } repeat %% /xmin 105 def /xlen 105 def /ysep -7.1 def /ymin 0 def /ymax 297 def ymax ysep ymin { xmin exch moveto xlen 0 rlineto stroke } for showpage / Regards,

Re: Creating combined manuscript/ruled paper

2019-09-03 Thread karl
e /y y yst add def } repeat /y y ysep add def } repeat showpage a a scale 0.1 setlinewidth /xmin 0 def /xlen 210 def /ysep -7.1 def /ymin 0 def /ymax 297 def ymax ysep ymin { xmin exch moveto xlen 0 rlineto stroke } for showpage // Regards,

Re: pageBreak causes multiple ChoirStaff or StaffGroup System Start Delimiters

2019-08-10 Thread Patrick Karl
On 8/10/19 12:10 PM, Mark Stephen Mrotek wrote: \version "2.19.81" \score {     {   \new StaffGroup <<   \new Staff c''1   \new Staff c''1  >>} } \pageBreak     {   \new StaffGroup <<   \new Staff   d''1   \new Staff d''1 >>} Yes, that's

Re: pageBreak causes multiple ChoirStaff or StaffGroup System Start Delimiters

2019-08-10 Thread Patrick Karl
On 8/10/19 10:34 AM, David Wright wrote: On Sat 10 Aug 2019 at 09:58:21 (-0500), Patrick Karl wrote: On 8/9/19 11:40 AM, Mark Stephen Mrotek wrote: Patrick, Not sure about the page break. Is this what you want? Well, not really.  If you'll reread the subject I wrote, I'm looking to get

Re: pageBreak causes multiple ChoirStaff or StaffGroup System Start Delimiters

2019-08-10 Thread Patrick Karl
;<   \new Staff { d''1 }   \new Staff d''1 >>   >>    } } *From:*lilypond-user [mailto:lilypond-user-bounces+carsonmark=ca.rr@gnu.org] *On Behalf Of *Patrick Karl *Sent:* Friday, August 09, 2019 9:35 AM *To:* lilypond-user *Subject:* pageBreak causes m

pageBreak causes multiple ChoirStaff or StaffGroup System Start Delimiters

2019-08-09 Thread Patrick Karl
The following snippet generates a StaffGroup with two staves followed by a second similar StaffGroup on a second page: \score {     {   \new StaffGroup <<   \new Staff c''1   \new Staff c''1  >>   \new StaffGroup <<   \new Staff {  \pageBreak d''1 }  

Re: Transposing instrument best practice

2019-07-31 Thread karl
f/herself, you can do it either way. Regards, /Karl Hammar ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Frescobaldi language problem

2019-07-06 Thread John Karl
On 7/6/19 6:17 PM, Federico Bruni wrote: Il giorno gio 4 lug 2019 alle 18:50, Tyler Mitchell ha scritto: On Thu, Jul 04, 2019 at 11:26:16AM -0500, John Karl wrote:  I've have apparently reset Frescobaldi's language selection for  its "Lilypond log" output from English to Germa

Frescobaldi language problem

2019-07-04 Thread John Karl
I've have apparently reset Frescobaldi's language selection for its "Lilypond log" output from English to German and have been unable to undo this.  I think this probably happened when I was playing around with a lilypond-user request from someone in Germany.  I'm running Frescobaldi 2.19.0 on

Re: Variables

2019-06-02 Thread karl
Menuetto } Men = { s2^\men s } /// \include "a.ily" \score { << \new Staff \ma \new Staff << \mb \Men >> >> } /// \include "a.ily" \score { \new Staff << \ma \Men >> } /// \include "a.ily" \score { \new Staff << \m

Re: How to calculate visible vertical beam-height

2019-06-02 Thread karl
th of p1-p3 = length p1-p2 / cos(atan(slope)) and finally: total height = thickness + blot / cos(atan(slope)) Well, you can't blame me for guessing. Regards, /Karl Hammar ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Variables

2019-06-02 Thread karl
appens once unless you use them multiple times. > here is attached an example in score mode where i would like "Menuetto da > Capo" printed only in the lower voice. > <http://lilypond.1069038.n5.nabble.com/file/t1823/Capture.png> Can't help you since I don't know how

Re: "D.C. al Fine" best practice

2019-05-13 Thread karl
Friedhelm Stümke: > @Karl > > the result can be seen in the last page of: > > http://aspodata.se/choir/ensemble/_nxt_/bwv128_d.pdf > may I suggest an additional "s" in "Menche"? It should be "Mensche". Yes, you may! Thank you very much

Re: "D.C. al Fine" best practice

2019-05-13 Thread karl
quot;|." the result can be seen in the last page of: http://aspodata.se/choir/ensemble/_nxt_/bwv128_d.pdf Regards, /Karl Hammar ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Inserting lyrics in a global situation

2019-05-13 Thread karl
\new Staff \with \nameA << \voiceA ... >> %%% \score { << \new ChoirStaff << \staffA \lyricsto voiceA \lyrA ... >> ... >> } Regards, /Karl Hammar ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Advice sought on making parts for string quartet

2019-03-14 Thread karl
here to exemplify things. The last link should be: http://aspodata.se/git/musik/Franz_Zaver_Brixi/haec_est_dies/ Regards, /Karl Hammar ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Advice sought on making parts for string quartet

2019-03-13 Thread karl
gnificat.ly by commenting: \include "clefCem.ily" %clefCem = \clefCemOrg clefCem = \clefCemMod ... \score { ... \new GrandStaff << \transpose c \pitchTranspose \new Staff = "up" << \musA \musB \musC \BS \PS >>

Bar numbers not always printed at beginning of line

2019-02-23 Thread Cynthia Karl
The first sentence of the Bar numbers subsection of section "1.2.5 Bars” states:Bar numbers are typeset by default at the start of every line except the first line.However, the 2nd line of the output of the following snippet does not get a bar number: BarNumberProblem.ly Description: Binary data

Re: Request for contribution: font demonstration examples

2019-01-31 Thread karl
usted or replaced when using a newer lilypond. Regards, /Karl Hammar --- Aspö Data Lilla Aspö 148 S-742 94 Östhammar Sweden ___ lilypond-user mailing list lilypond-user@gnu.org https://li

Re: Request for contribution: font demonstration examples

2019-01-31 Thread karl
Urs Liska: ... > * Mensural notation ... Feel free to use: http://aspodata.se/choir/ensemble/TomasLuisdeVictoria/o_quam_gloriosum/motet/o_quam_gloriosum.pdf http://aspodata.se/git/musik/TomasLuisdeVictoria/o_quam_gloriosum/motet/ Regards, /Karl Ham

Re: postscript printers for lilypond

2019-01-29 Thread karl
Karl: > David: ... > > I just > > recently removed a Ghostscriptism (using max/mix operators) that would > > have made regular PostScript interpreters barf. Maybe that's fixed in > > master now? Yes, I see it. > I'll try that, though there where some problems with

Re: postscript printers for lilypond

2019-01-28 Thread karl
gh for the links, I'll will follow them up. Regards, /Karl Hammar --- Aspö Data Lilla Aspö 148 S-742 94 Östhammar Sweden ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gn

Re: postscript printers for lilypond

2019-01-28 Thread karl
ra for prepress. Regards, /Karl Hammar --- Aspö Data Lilla Aspö 148 S-742 94 Östhammar Sweden ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: postscript printers for lilypond

2019-01-28 Thread karl
colour laser ? Why should I expose singers and players with subpar sheet music, aren't we artists of producing beautiful sheet music. There is no reason to degrade your results by using, in the end, a bad printer. Regards, /Karl Hammar ---

Re: postscript printers for lilypond

2019-01-28 Thread karl
Karlin: ... > Karl, what make and model was your surge-damaged printer? It will be > easier to recommend another printer if we know what product families > worked well in the past. There's even a slim chance that replacing a > circuit board could get the old one going again. I have a

Re: postscript printers for lilypond

2019-01-28 Thread karl
ave just because the printer is too stupid to understand it. If possible I require all printers I buy to have postscript, the exception is large format inkjets. Regards, /Karl Hammar --- Aspö Dat

Re: postscript printers for lilypond

2019-01-28 Thread karl
o give my perfect matte blacks, but they have problems with the resolution, the black edges are not straight. The blacks don't cover the whole black area, there are small white dots all over where the the ink didn't get. The Epson is a litte better. Regards, /Ka

Re: postscript printers for lilypond

2019-01-28 Thread karl
o my usual postscript printers. If you have any advice to get it working I'd be glad. My only intent with it is posters, photos, covers, and large sheets of music for organ works and such where you don't have a hand handy t

Re: postscript printers for lilypond

2019-01-28 Thread karl
Andrew: > Can I ask why you don't use matte paper? I try to, is there some you works good for lasers and that you can recommend? Regards, /Karl Hammar --- Aspö Data Lilla Aspö 148 S-742 94 Östhammar Swe

Re: postscript printers for lilypond

2019-01-28 Thread karl
reters barf. Maybe that's fixed in > master now? I'll try that, though there where some problems with the guile version and some fonts last time I compiled lilypond. Regards, /Karl Hammar --- Aspö Data Lilla Aspö 148 S-742 94 Ös

Re: postscript printers for lilypond

2019-01-28 Thread karl
d PostScript > compatibility requirements, and I predict there will not be an > overwhelming number of choices. No, the number of choises seem to be in the wincinity of zero, at least for new printers. Regards, /Karl Hammar --- Aspö Dat

Re: postscript printers for lilypond

2019-01-28 Thread karl
ld/older printers as long as service parts are available. Regards, /Karl Hammar --- Aspö Data Lilla Aspö 148 S-742 94 Östhammar Sweden ___ lilypond-user mailing list lilypond-user@gnu.org https

postscript printers for lilypond

2019-01-27 Thread karl
ript. Any suggestions ? Regards, /Karl Hammar --- Aspö Data Lilla Aspö 148 S-742 94 Östhammar Sweden ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailma

Re: Schenker graph example

2018-12-03 Thread karl
Thomas Morley: > And I have absolutely no idea why your image is in my reply :((( > I didn't see it, I didn't attach it. Wtf It was in the html part and not in the plain-text part of his mail. Regards, /Karl Hammar --

Re:v2.19.82 documentation unusable? (Aaron Hill)

2018-11-27 Thread Cynthia Karl
om> > Content-Type: text/plain; charset=UTF-8; format=flowed > > On 2018-11-23 7:30 am, David Kastrup wrote: >> Patrick Karl writes: >> >>> I thank everyone for the replies. I?ll just wait till it?s fixed. >>> >>> I tried to find a version of Emm

Re: v2.19.82 documentation unusable?

2018-11-23 Thread Patrick Karl
ote: > > Thomas Morley mailto:thomasmorle...@gmail.com>> > writes: > >> Am Do., 22. Nov. 2018 um 23:49 Uhr schrieb Patrick Karl : >>> >>> I have lately been trying to move from v2.19.81 to 2.19.82. The >>> biggest problem I see at this early

v2.19.82 documentation unusable?

2018-11-22 Thread Patrick Karl
I have lately been trying to move from v2.19.81 to 2.19.82. The biggest problem I see at this early stage is that v2.19.82 documentation is apparently dependent upon a new font, Emmentaler-20. Or at least I get an error message such as: Cannot find or create the font Emmentaler-20. Some

Re: Hairpin.to-barline doesn't always work

2018-07-25 Thread Patrick Karl
read the section of the Notation RM dealing with the to-barline property of Spanners (5.4.6), and haven't seen an explanation of this behavior. 2018-07-21 5:08 GMT+02:00 Patrick Karl <mailto:jpk...@gmail.com>>: Section 5.4.6 of the Notation RM states: /The

Hairpin.to-barline doesn't always work

2018-07-20 Thread Patrick Karl
Section 5.4.6 of the Notation RM states: /The|to-barline|property/ The second useful property of the|spanner-interface|is|to-barline|. By default this is true, causing hairpins and other spanners which are terminated on the first note of a measure to end instead on the

\set Staff.tempoHideNote not working

2018-07-19 Thread Patrick Karl
Neither of the following attempts at hiding the "quarter note = nnn" works: { \set Staff.tempoHideNote = ##t   \tempo "Allegro" 4=120   c''4 d'' e'' f'' } { \tempo "Allegro" \set Staff.tempoHideNote = ##t   \tempo 4=120   c''4 d'' e'' f'' } I think the first one should clearly work, but it

Re:\bookparts and scaling (Karlin High)

2018-06-30 Thread Cynthia Karl
> > Message: 2 > Date: Fri, 29 Jun 2018 13:18:18 -0500 > From: Karlin High > To: lilypond-user@gnu.org, David Wright , > crimsonsunr...@protonmail.com > Cc: torsten.haemme...@web.de, David Kastrup > Subject: Re: \bookparts and scaling > Message-ID: > Content-Type: text/plain;

Re: Extra space at the beginning of the bar

2018-03-25 Thread Patrick Karl
> On Mar 25, 2018, at 2:56 AM, lilypond-user-requ...@gnu.org wrote: > > Message: 2 > Date: Sat, 24 Mar 2018 22:57:18 -0400 > From: Kieren MacMillan > To: paolo prete > Cc: Lilypond-User Mailing List > Subject: Re:

Re: MIDI tick resolution

2018-03-21 Thread karl
Gilberto: > Karl Hammar wrote > > The technical limitation of midi file format is that the tick is a > > 15bit quantity, i.e. the maximum value is 2^15-1 = 32767. ... > The only issue of going overboard with that value is that some DAWs might > then complain when opening these

Re: MIDI tick resolution

2018-03-21 Thread karl
-note. For instance, if division is 96, then a time interval of an eighth-note between two events in the file would be 48. Perhaps we should call the value Midi_division or something similar. Regards, /Karl Hammar --- Aspö D

Re: MIDI tick resolution

2018-03-21 Thread karl
192 quarter notes, which should be sufficient for most (all?) music. In effect, there is no need to choose a small tick value unless you want smaller midi files (a consern which should be irrelevant today) or perhaps due to some misbehaving midi equipment. Regards, /Karl Hammar --

Re: MIDI tick resolution

2018-03-19 Thread karl
David: > k...@aspodata.se writes: ... > > You could try the attached rudimentary patch and recompile your ... > The patch is pretty awful. Please, don't be rude, I did write it was rudimentary, you don't need to restate that. Regards,

Re: MIDI tick resolution

2018-03-19 Thread karl
the attached rudimentary patch and recompile your lilypond source, see if that solves your problem, and report back. BTW, 384 = 128 * 3 960 = 64 * 3 * 5 Regards, /Karl Hammar --- Aspö Data Lilla Aspö 148 S-742 94 Östhammar Sweden +46 173 1

Re: Understanding the eps bounding box (rounding)

2018-03-01 Thread karl
ny value between -79.5 and -80.499 ... So, if the leftmost painted things is at e.g. -79.1 then llx <= -80, since llx >= -79 wouldn't do. Regards, /Karl Hammar --- Aspö Data Lilla Aspö 148 S-742 94 Öst

Re: Is anyone maintaining midi2ly?

2017-12-30 Thread karl
hecks in the wrong places, don't know why. /// Regarding your subject line question, I don't know. I make my own midi -> ly converter though, currently in an experimental leap... Regards, /Karl Hammar --- Aspö Data Lilla Aspö 14

Re: getting paid for an include (I offer)

2017-12-29 Thread karl
g able to use it oneself, and for that end, beeing able to make a cleaner version of a source tabulature Regards, /Karl Hammar --- Asp?? Data Lilla Asp?? 148 S-742 94 ??sthammar Sweden +46 173

Re: "\includepdf" in LilyPond

2017-12-18 Thread karl
$ lilypond xxx ... Finished, do something $ Or use a Makefile, you can look at my workflow if you like: http://aspodata.se/git/musik/bin/ http://aspodata.se/git/musik/include/ Regards, /Karl Hammar --- Aspö Data Lilla Aspö 148 S

Re: "\includepdf" in LilyPond

2017-12-18 Thread karl
things? Yes. Regards, /Karl Hammar --- Aspö Data Lilla Aspö 148 S-742 94 Östhammar Sweden +46 173 140 57 ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu

Re: Midi notes not stopping

2017-11-29 Thread karl
e me any problems. And then I did nitpick that it wasn't technically perfect. So if there is any bug, it would probably have been introduced in a later version, which I cannot compile for the moment due to a missing dependancy. Regards, /Karl Hammar ---

Re: Midi notes not stopping

2017-11-29 Thread karl
6, 0, 79, 0], ['note_on', 1, 0, 80, 75], ['note_on', 76, 0, 80, 0], ['end_track', 0], ] }), ] }); (the presented format is ['note_on', dtime, channel, note, velocity]) which is mostly correct, the quintuplet doesn't add upp to a quarter note, a 1/384 is miss

Re: figured bass / latex lilypond-book

2017-11-27 Thread karl
ersion "2.18" \include "lilypond-book-preamble.ly" \figures { <7! 6+ 4-> <5++> <3--> } the output file will be cropped. It also produces files a-.* a-systems.*; just do a \includegraphics{a-1} to put that snippet in your latex

Re: figured bass / latex lilypond-book

2017-11-27 Thread karl
the type1 fonts and make them available to latex. A rudimentary program for to do that (not reasently tested) is lilyfont.pl in http://aspodata.se/git/musik/bin/, see lilyfont.readme for description. Example of use is in lilyfont.tex. The numbers you seek are here called \lilyone etc. Regards, /Ka

Re: Unwanted spacing in text

2017-11-12 Thread Cynthia Karl
> On Nov 12, 2017, at 12:12 PM, Cynthia Karl <pck...@mac.com> wrote: > > >> On Nov 12, 2017, at 10:35 AM, lilypond-user-requ...@gnu.org wrote: >> >> \version "2.18.2" >> >> \header { >> ? title = \markup { \char ##x00c6 "

Re: Unwanted spacing in text

2017-11-12 Thread Cynthia Karl
> On Nov 12, 2017, at 10:35 AM, lilypond-user-requ...@gnu.org wrote: > > \version "2.18.2" > > \header { > ? title = \markup { \char ##x00c6 "nigma" } > } > > \score { > ? \new Staff = \relative c' { c1 } > } > If you’re using Frescobaldi, the easiest way is to go to "Tools/Special

Re: How to end a melisma

2017-11-02 Thread Patrick Karl
On 10/31/17 7:19 PM, Simon Albrecht wrote: On 31.10.2017 18:09, pkarl wrote: I'm trying to figure out the correct way to have LilyPond, v2.19.53, generate the attached score, which is for an instrument and a singer, but the singer doesn't sing all the notes that the instrumentalist plays.

Re: How to generate a minimally sized pdf

2017-05-28 Thread karl
t; from LaTeX in lilypond? There is no auto paper size, it's A4 or something you set, see: http://lilypond.org/doc/v2.18/Documentation/notation/paper-size-and-automatic-scaling Hälsningar, /Karl Hammar --- Aspö Data Lilla Aspö 148 S-742

Re: An 'interpreter' for lilypond

2017-04-02 Thread Cynthia Karl
> > Message: 5 > Date: Sat, 1 Apr 2017 12:39:23 -0700 (MST) > From: tisimst > To: lilypond-user@gnu.org > Subject: Re: An 'interpreter' for lilypond > Message-ID: > > Content-Type: text/plain;

chordmode above bar numbers ?

2017-03-23 Thread karl
\new ChoirStaff << \new Staff \Ma >> >> } === Regards, /Karl Hammar --- Aspö Data Lilla Aspö 148 S-742 94 Östhammar Sweden +46 173 140 57

Re: UTF-8 in MIDI Lyrics

2017-02-25 Thread karl
Joseph Austin: > > From: Karl Hammar <k...@opal.lcl.aspodata.se > > <mailto:k...@opal.lcl.aspodata.se>> ... > >> But if we are going to use a "private standard", we might as well > >> imitate the "official" standard and insert some

  1   2   3   4   5   6   >