Francisco Vila | 1 Feb 01:16
Picon

Re: Making invisible the barline that extends between staff groups

2012/1/31 Joey Di Nardo <joey.dinardo <at> gmail.com>:
> Hi all, I'm trying to make invisible the barline that extends between the staff groups, so that only the
menstriche line are present. Here's my code:

And your question is...?

--

-- 
Francisco Vila. Badajoz (Spain)
www.paconet.org , www.csmbadajoz.com
Thomas Morley | 1 Feb 02:37

Re: Making invisible the barline that extends between staff groups

Hi Joey,

2012/2/1 Francisco Vila <paconet.org <at> gmail.com>:
> 2012/1/31 Joey Di Nardo <joey.dinardo <at> gmail.com>:
>> Hi all, I'm trying to make invisible the barline that extends between the staff groups, so that only the
menstriche line are present. Here's my code:
>
> And your question is...?
>
> --
> Francisco Vila. Badajoz (Spain)
> www.paconet.org , www.csmbadajoz.com
>
> _______________________________________________
> lilypond-user mailing list
> lilypond-user <at> gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user

I'm not sure that I understood what you want, perhaps:

\version "2.14.2"

\paper {
 #(define dump-extents #t)

 #(set-paper-size "11x17")
 %line-width = 160\mm - 2.0 * 0.4\in
 %indent = 0\mm
 %force-assignment = #""
 %line-width = #(- line-width (* mm  3.000000))
(Continue reading)

Joey Di Nardo | 1 Feb 04:07
Picon

Re: Making invisible the barline that extends between staff groups

Thanks for the help Thomas, am I correct in that all you added was:

 \new StaffGroup\with { \override SpanBar #'transparent = ##t } 

It's just that barline that appears between the percussion parts (not between the two staves that comprise their parts) I want to make invisible.
_______________________________________________
lilypond-user mailing list
lilypond-user <at> gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user
Picon

Re: Multiple notes over same lyric

Thomas, This is exactly what I was looking for! Thanks so much for the time and the accompanying example. -MDS


2012/1/31 Thomas Morley <thomasmorley65 <at> googlemail.com>
Hi,

2012/1/31 Janek Warchoł <janek.lilypond <at> gmail.com>:
> Hi,
>
> 2012/1/31 mdspencer <phatmatt <at> gmail.com>:
>> I guess maybe I'm confused then. When I leave off the associated lyrics,
>> then the note spacing is compact, just like I wish. When I put the lyrics
>> in, they push over some notes, but the other note spaces are not changed.
>
> I think this is a limitation of LilyPond.  See the end of this
> subsection http://lilypond.org/doc/v2.15/Documentation/notation/working-with-ancient-music_002d_002dscenarios-and-solutions#transcribing-gregorian-chant
> for a work-around.
>
> Hope this helps,
> Janek
>
> _______________________________________________
> lilypond-user mailing list
> lilypond-user <at> gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user

in gregorian.ly there is the setting:
\override SpacingSpanner #'packed-spacing = ##t
in \layout which causes the problem.

You can set it to #f in your own \layout.  Of course the spacing is
changed now, but playing around with some other properties of
SpacingSpanner leads to an acceptable result, I hope.

see also:
http://old.nabble.com/Compressing-mensural-notation-td32747638.html

In the snippet below I integrated your "Tes -- ting" and another
little bit larger example, discussed some time ago in the german
forum. http://www.lilypondforum.de/index.php?topic=1011.0 (but you
need an account there to see the attached files)

\version "2.14.2"

%-------------- Example 1

\include "gregorian.ly"

myLayout = \layout {
 \context {
  \Staff
  \remove "Time_signature_engraver"
  \override Stem #'transparent = ##t
 }
 \context {
  \Voice
  \override Stem #'length = #0
 }
 \context {
  \Score
  % not needed! -> gregorian.ly
  % \remove "Bar_number_engraver"
  \override SpacingSpanner #'packed-spacing = ##f
  \override SpacingSpanner #'common-shortest-duration = #(ly:make-moment 1 3)
  \override SpacingSpanner #'base-shortest-duration = #(ly:make-moment 1 2)
  \override SpacingSpanner #'spacing-increment = #1.4
  timing = ##t
  barAlways = ##f
 }
}

chant = {
 \clef treble \cadenzaOn \autoBeamOff
 g'( a' b') b'~ b'
}

chantLyrics = \lyricmode { Test -- ing }

\score {
 \new Staff <<
  \new Voice = "chantVoice" \chant
 >>
 \layout { \myLayout }
}

\score {
 \new Staff <<
  \new Voice = "chantVoice" \chant
  \new Lyrics \lyricsto "chantVoice" { \chantLyrics }
 >>
 \layout { \myLayout }
}

%-------------- Example 2

\include "gregorian.ly"

#(set-global-staff-size 18)

\score {
       \new Staff {
               \relative c' {
                       \clef "treble_8"
                       \time 1/4
%Ia.3
               b c d s \divisioMaxima g g32 f e (d c b a g)
               a16 (b a b) g4 s \divisioMaxima \break
%Ib.1
               g' \times 2/3 { e8 f (g) } f e d b s4 a4 c
               e16 (d e f) s4 \divisioMaxima
               d s4 \divisioMaxima \times 2/3 { c8 (b a) } s4
               \divisioMaxima g4 \break
               c e f d   e  s4 \divisioMaxima  \break
       }
\addlyrics {
       \set stanza = #"Ia.3" po4 -- pu -- lis2 di4 -- es is -- ta.2
       \set stanza = #"Ib.1" Hanc4 pro -- phe -- te2 pri4 -- scis a2
se -- cu -- lis,4
       \set stanza = #"Ib.2" si -- gna -- ve -- re mul -- tis um --
bra -- cu -- lis, }
       }

 \layout {
         \context {
               \Voice
                 %\override Slur #'transparent = ##t
         }
         \context {
               \Staff
                 \remove "Time_signature_engraver"
         \override BarLine #'X-extent = #'(-0.7 . 0.7)
         \override Stem #'transparent = ##t
         \override Beam #'transparent = ##t
         \override BarLine #'transparent = ##t
         \override TupletNumber #'transparent = ##t
         }
         \context {
               \Score
                 % not needed! -> gregorian.ly
                 %\remove "Bar_number_engraver"
                 \override SpacingSpanner #'packed-spacing = ##f
                 \override SpacingSpanner #'common-shortest-duration =
#(ly:make-moment 1 3)
                 \override SpacingSpanner #'base-shortest-duration =
#(ly:make-moment 1 2)
                 \override SpacingSpanner #'spacing-increment = #1.4
         }
         ragged-right = ##t
         indent = 0
 }
}


HTH,
 Harm

_______________________________________________
lilypond-user mailing list
lilypond-user <at> gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user
Andrew C. Smith | 1 Feb 06:09
Picon

can't output multiple midi drum voices

Whenever I have more than one DrumVoice going at a time neither one outputs anything at all.

Sample code follows. You'd expect the first part to at least make some sound, but it doesn't do anything at all.

My initial thought is that since there's only one percussion midi channel it breaks down when you try to use two channels. Maybe there's a workaround to that?

I'm writing some somewhat difficult percussion parts, and it'd be nice to give them a sense for the rhythms. 

Also I'm aware that the first beat of that measure is totally absurd.

-Andrew

\score { 
\new DrumStaff { 
\time 3/2 
\drummode {
<< \times 8/7 {r8 cymr16 ~ cymr4} \\ \times 2/3 {r4 cymr wbh} \\ { r8 sn4. } >> << cymr8.-> \\ sn8. >> bd16 ~ bd4 \times 2/3 {r8 cymr4->^\sfz ~ } cymr8. cymr16 |
}
\midi {}
\layout {}
}

_______________________________________________
lilypond-user mailing list
lilypond-user <at> gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user
Marc Hohl | 1 Feb 09:34
Picon
Favicon

Re: OSX 10.7, fonts and fondu?

Am 31.01.2012 21:55, schrieb padovani:
> hello,
>
> I'm having troubles with 2.15.27 and OSX 10.7.2.
>
> In a simple piece of code using fonts like Texier's Controla 
> (http://christian.texier.pagespro-orange.fr/mididesi/free/index.htm), 
> the compilation process ends with the following error:
>
> Drawing systems...
> Layout output to `test.ps'...
> warning: `(fondu -force /Library/Fonts/Concr)' failed (256)
>
>
> input file content below:
>
> %% LilyPond code
> aaa = \markup {\override #'(font-name . "Controla")
> \fontsize #7
> "\“"
> }
I don't use MacOS, but have you tried to omit the backslash?

Just a thought,

Marc
trevordixon | 1 Feb 10:51
Picon

Experimental Web-based Lilypond Editor

I've been working on something I think the LilyPond community may find very useful: a web-based editor. Before you check it out, keep in mind that it's at a pre-alpha stage. It's likely that certain things won't work as expected, and it will probably crash and be down at times. I've only tested it in Chrome 15 and Firefox 9. It should work in Internet Explorer 9 or 10, but will almost certainly not work in IE8 or earlier.

Saving will create a new URL that you can share with others. If they save, it will be saved as a new revision, preserving your original.

This could be useful for:

  • Posting example code that you'd like others to look at and mess with.
  • Quick projects when you don't have access to your regular development environment.
  • Perhaps as your main editor someday.

Future features might include:

  • Ability to open and save to your hard drive.
  • Ability to open and save to Dropbox.
  • Open to suggestions.

See it at: http://lily.sytes.net

Let me know how it works for you!


View this message in context: Experimental Web-based Lilypond Editor
Sent from the Gnu - Lilypond - User mailing list archive at Nabble.com.
_______________________________________________
lilypond-user mailing list
lilypond-user <at> gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user
padovani | 1 Feb 11:06
Picon

Re: OSX 10.7, fonts and fondu?

Em 2/1/12 6:34 AM, Marc Hohl escreveu:
> Am 31.01.2012 21:55, schrieb padovani:
>> hello,
>>
>> I'm having troubles with 2.15.27 and OSX 10.7.2.
>>
>> In a simple piece of code using fonts like Texier's Controla 
>> (http://christian.texier.pagespro-orange.fr/mididesi/free/index.htm), 
>> the compilation process ends with the following error:
>>
>> Drawing systems...
>> Layout output to `test.ps'...
>> warning: `(fondu -force /Library/Fonts/Concr)' failed (256)
>>
>>
>> input file content below:
>>
>> %% LilyPond code
>> aaa = \markup {\override #'(font-name . "Controla")
>> \fontsize #7
>> "\“"
>> }
> I don't use MacOS, but have you tried to omit the backslash?
>
> Just a thought,
>
> Marc
>
Actually the same problem happens with any "external" font and with any 
texts...
(it is not the backslash)

found this thread but I don't realize exactly how the problem was 
solved... (I'm also not sure if it is the same problem)

http://www.mail-archive.com/lilypond-user <at> gnu.org/msg65574.html

Should I send it to the bug team?

thanks
josé
Nils | 1 Feb 11:08
Picon

Re: Experimental Web-based Lilypond Editor

Just tested it. Good work, again.
It even accepted the font change.

http://lily.sytes.net/keorwxc4n29/2

On Wed, 1 Feb 2012 01:51:46 -0800 (PST)
trevordixon <trevordixon <at> gmail.com> wrote:

> 
> I've been working on something I think the LilyPond community may find very
> useful: a web-based editor. Before you check it out, keep in mind that it's
> at a pre-alpha stage. It's likely that certain things won't work as
> expected, and it will probably crash and be down at times. I've only tested
> it in Chrome 15 and Firefox 9. It should work in Internet Explorer 9 or 10,
> but will almost certainly not work in IE8 or earlier.
> 
> 
> Saving will create a new URL that you can share with others. If they save,
> it will be saved as a new revision, preserving your original.
> 
> 
> This could be useful for:
> 
> 
> Posting example code that you'd like others to look at and mess with.
> Quick projects when you don't have access to your regular development
> environment.
> Perhaps as your main editor someday.
> 
> 
> Future features might include:
> 
> 
> Ability to open and save to your hard drive.
> Ability to open and save to Dropbox.
> Open to suggestions.
> 
> 
> See it at:  http://lily.sytes.net http://lily.sytes.net 
> 
> 
> Let me know how it works for you!
> 
> -- 
> View this message in context: http://old.nabble.com/Experimental-Web-based-Lilypond-Editor-tp33242123p33242123.html
> Sent from the Gnu - Lilypond - User mailing list archive at Nabble.com.
flup2 | 1 Feb 11:11

Re: Experimental Web-based Lilypond Editor


Hello,

It works fine for me (using Chrome and Safari). 

Do you plan to update lilypond engine to the last stable release (2.14) ?

I also tried weblily.net that's unfortunately stuck with 2.12.

Philippe
--

-- 
View this message in context: http://old.nabble.com/Experimental-Web-based-Lilypond-Editor-tp33242123p33242225.html
Sent from the Gnu - Lilypond - User mailing list archive at Nabble.com.

Gmane