Re: Text in front of Staves

2013-08-17 Thread Thomas Morley
Hi Kale,

2013/8/16 Kale Good :
> Wow, Nick, that's pretty sharp. Saves on paper for sure. Reminds me of how
> they are set in the back of Pumping Nylon.
>
> Yes, Thomas, tupletspan was also giving me an error.
>
> I ended up resetting the short name of the instrument between each exercise
> and then setting the margins the same in the layout block. This way it'll
> break pages for me.
>
>
> \version "2.16.2"
[...]

With this approach pageBreak isn't an issue anymore.

Though some nitpicks:
In my printed edition (Schott) and in the png you posted initially
a) every new line has a TimeSignature _followed_ by the starting repeat-sign,
b) the BarLines are aligned.

a) is doable by inserting a new TimeSignature for every new exercise,
tweaking 'break-visibility and BreakAlignment 'break-align-orders.
b) is problematic. You can play around with the different properties
of SpacingSpanner, but I'm not sure you'll succeed.

Good luck,
  Harm

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


Re: Text in front of Staves

2013-08-15 Thread Kale Good
Wow, Nick, that's pretty sharp. Saves on paper for sure. Reminds me of how
they are set in the back of Pumping Nylon. 

Yes, Thomas, tupletspan was also giving me an error. 

I ended up resetting the short name of the instrument between each exercise
and then setting the margins the same in the layout block. This way it'll
break pages for me. 


\version "2.16.2"

\header {
 title = "120 Right Hand Studies"
 composer = "Mauro Giuliani"
 tagline = ""
}

cchord = { 
  \relative c {
\bar ":|" 
1
\bar "||:"  
  }
}

%%% Right hand fingerings %%
rhp = -\rightHandFinger #1 
rhi = -\rightHandFinger #2 
rhm = -\rightHandFinger #3 
rha = -\rightHandFinger #4 
rhx = -\rightHandFinger #5

strokesdown = 
  { 
\set strokeFingerOrientations = #'(down) 
\override StrokeFinger #'add-stem-support = ##t 
  }

strokesup = { 
  \set strokeFingerOrientations = #'(up) 
  \override StrokeFinger #'add-stem-support = ##t 
}

bass lines   %

basslineOne = { 
  \relative c {
\strokesdown {  
  c4\rhp e g c, | b d g b,
} 
  } 
}

studies = {
  \new Staff 
  \clef "G_8" 
  \key c 
  \major 
  \time 4/4 
  \mergeDifferentlyHeadedOn 
  \mergeDifferentlyDottedOn
  \with { instrumentName = "N° 1." } 
  \relative c {  

  %%% 
  %Number 1 
  %%%
<< 
  { 
\strokesup 
\bar "|:"
 4
 
 \cchord
  
  }
  \\
  {
\basslineOne 
  }
>> 
  
  %%% 
  %Number 2 
  %%%
  \break \set Staff.shortInstrumentName = #"N° 2."
 << 
  { 
\scaleDurations #'(2 . 3) {
  \strokesup 

  c,8 c'\rhi e\rhm   e, c' e  g, c e  c, c' e  
  b, d' f  d, d' f g, d' f  b,, d' f 

}
\cchord
  }
  \\
  {
\basslineOne
  }
>> 
  
  %%% 
  %Number 3 
  %%%
  \break \set Staff.shortInstrumentName = #"N° 3."
 << 
  { 
\scaleDurations #'(2 . 3) {
  \strokesup 

  c,8 e'\rhm c\rhi   e, e' c  g e' c  c, e' c  
  b, f'' d  d, f' d g, f' d  b, f'' d 

}
\cchord
  }
  \\
  {
\basslineOne
  }
>> 
  }
}

\score {  
  \studies
  
  \midi {
}
  \layout {
  ragged-right = ##f
  indent = 1.5\cm
  short-indent = 1.5\cm
  \context {
  \Score
  \override SystemStartBar #'stencil = ##f
  \override NoteColumn #'force-hshift = #0
  \remove "Bar_number_engraver"
}
\context {
  \Staff
}
\context {
  \Voice
  \override TupletBracket #'bracket-visibility = ##f
  \override TupletNumber #'stencil = ##f
}
  }
}

\paper {
  %left-margin = 3\cm
  #(set-default-paper-size "letter")
}

best,
Kale



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Text-in-front-of-Staves-tp149121p149257.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Text in front of Staves

2013-08-15 Thread Thomas Morley
2013/8/15 Thomas Morley :

>> On 14/08/13 23:46, Kale Good wrote:

>>> *works like a charm except for your \override VerticalAxisGroup command,
>>> which I'm not super familiar with (looks right to me). Won't compile
>>> with it, will compile without it.
>
> I don't understand why it doesn't work for you.
> Did you really copy and paste my or Nick's code and compiled it
> without any change?

Ah, I overlooked you're using 2.16.2, try
\override VerticalAxisGroup #'default-staff-staff-spacing = ...
instead, (note the #' )

Though, if you use 2.16.2 you should have problems with
\tupletSpan
too. ;)


Cheers,
  Harm

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


Re: Text in front of Staves

2013-08-15 Thread Thomas Morley
2013/8/15 Nick Payne :
> On 14/08/13 23:46, Kale Good wrote:
>>
>> Hi Thomas,
>> Thanks; it works like a charm* until I need a page break; right now its
>> just crowding everything on one page. I put it a \pageBreak and nothing
>> happened, so I'm guessing that lilypond won't break simultaneous music
>> over a page (makes sense). Any overrides for this?

Well, the problem is "How to align the exercises vertically?" at least
their repeat signs.

You can do as I proposed:
<<
  \new Staff { ... }
  \new Staff { ... }
  ...
  ...
  \new Staff { ... }
  \new Staff { ... }
>>
With the disadvantage that you have to manually insert a pageBreak by
intercepting
<< ... >>
and start a new section with
<< ... >>
on the next page.

Alternatively you may try Nick's method below.

I dond't know else.

>>
>> *works like a charm except for your \override VerticalAxisGroup command,
>> which I'm not super familiar with (looks right to me). Won't compile
>> with it, will compile without it.

I don't understand why it doesn't work for you.
Did you really copy and paste my or Nick's code and compiled it
without any change?

>>
>> wasn't planning on bringing back 19th century guitar fingering notation,
>> but now that you mention it... =)
>>
>
> When I set the Giuliani 120 exercises a couple of years ago, I did it by
> using Lilypond render frames in Scribus, with each exercise as a separate ly
> score.
>
> See attached, which is a Scribus file showing the first two exercises set in
> render frames (the Lilypond code is inside the render frames, right-click on
> the render frame and select Edit Source to see it), and the resulting PDF
> output.
>
> You need Scribus 1.5 to open the sla file. Version 1.4 can't recognise it.


Cheers,
  Harm

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


Re: Text in front of Staves

2013-08-14 Thread Kale Good
Well that's the simple solution to defining right hand fingers that I 
was looking for. Thanks.


Your example, like Thomas's, throws an error for me with the \override 
VerticalAxisGroup using 2.16.2 Also throws an error for tuplet command, 
but both work once I take these out. Also, there's the issue of page 
breaks; right now the 20 exercise I have done are all crammed on one page.


Here is my code for the 2 we're looking at. Please pardon me if my 
minimum example isn't as minimum as possible; this is by far the biggest 
lily project I've undertaken.


\version "2.16.2"


 recurring themes %

staffset = {

\new Voice

\clef "G_8"

\key c

\major

\time 4/4

\mergeDifferentlyHeadedOn

\mergeDifferentlyDottedOn

\bar "|:"

}


cchord = {

\relative c' {

\bar ":|"

1

\bar "|."

}

}


rh = #rightHandFinger


strokesdown =

{

\set strokeFingerOrientations = #'(down)

\override StrokeFinger #'add-stem-support = ##t

}


strokesup = {

\set strokeFingerOrientations = #'(up)

\override StrokeFinger #'add-stem-support = ##t

}


%%% bass lines %%%

basslineOne = {

\strokesdown {

c,4\rh #1 e g c, | b d g b,

}

}


studies =

<<


%%%

%Number 3

%%%

\new Staff \with { instrumentName = "N° 3." }

<<

\staffset

\relative c' {

\bar ".|:"

\voiceOne

\scaleDurations #'(2 . 3) {

\strokesup

c,8 e'\rh #3 c\rh #2 e, e' c g e' c c, e' c

b, f'' d d, f' d g, f' d b, f'' d


}

\cchord

}

\new Voice

\relative c' {

\voiceTwo

\basslineOne

}

>>

%%%

%Number 4

%%%

\new Staff \with { instrumentName = "N° 4." }

<<

\staffset

\relative c' {

\bar ".|:"

\voiceOne

\scaleDurations #'(2 . 3) {

\strokesup

c,8 e\rh #2 g\rh #3 e g c g c e c, c' e

b, d g d g d' g, d' f b,, d' f

}

\cchord

}

\new Voice

\relative c' {

\voiceTwo

\basslineOne

}

>>

>>

\score {

<<

\studies

>>

\midi {

}


\layout {

ragged-right = ##f

\context {

\Voice

\override TupletBracket #'bracket-visibility = ##f

\override TupletNumber #'stencil = ##f

}

\context {

\Staff

}

\context {

\Score

\override SystemStartBar #'stencil = ##f

\override NoteColumn #'force-hshift = #0

}

}

}


\paper {

}


Best,
Kale






On 08/14/2013 09:44 AM, Pierre Perol-Schneider wrote:

Hi Harm, Hi Kale,

2013/8/14 Thomas Morley >



  \relative c' {


Two small remarks :
1) because of its tessitura, \relative is not needed for the guitar
2) better use \clef "G_8"

Here's Harm's code with "modern" fingerings and an alternative for the 
"no left hand finger" in the exercise no.4


\version "2.17.23"
%\version "2.16.2"

%%% Right hand fingerings %%
rhp = -\rightHandFinger #1
rhi = -\rightHandFinger #2
rhm = -\rightHandFinger #3
rha = -\rightHandFinger #4
rhx = -\rightHandFinger #5

 Aletrnate "No Left hand" fingering %
lnf =
#(let ((finger (make-music 'FingeringEvent)))
   (set! (ly:music-property finger 'tweaks)
   (acons 'text #{\markup\stencil #(make-circle-stencil 0.45 0.2 #f)#}
(ly:music-property finger 'tweaks)))
   finger)

%%% score 

\layout {
  ragged-right = ##f
  \context {
\Voice
\override TupletBracket #'bracket-visibility = ##f
\override TupletNumber #'stencil = ##f
  }
  \context {
\Staff
\override VerticalAxisGroup.default-staff-staff-spacing =
#'((basic-distance . 15)
 (minimum-distance . 10)
 (padding . 1))
  }
  \context {
\Score
\override SystemStartBar #'stencil = ##f
\override NoteColumn #'force-hshift = #0
  }
}

<<
  \new Staff \with { instrumentName = "N° 3" }
<<
  \new Voice
  \clef "G_8"
  {
\voiceOne
\set fingeringOrientations = #'(left)
\set strokeFingerOrientations = #'(up)
\override StrokeFinger #'add-stem-support = ##t
\bar ".|:"
\repeat volta 2 {
\tupletSpan 4
\times 2/3 {
%mes. 1
  c8   e e'\rhm c'\rhi
  g e'\rhm c'\rhi c e'\rhm c'\rhi |
  %mes. 2
  b,   d f'\rhm d'\rhi
  g f'\rhm d'\rhi b, f'\rhm d'\rhi |
}
}
% mes. 3
1 |
\bar "|."
  }
  \new Voice
  {
 \voiceTwo
   \set fingeringOrientations = #'(left)
   \set strokeFingerOrientations = #'(down)
 \override StrokeFinger #'add-stem-support = ##t
4   c\rhp
   b,\rhp
% mes. 3
1 |
  }
>>
  \new Staff \with { instrumentName = "N° 4" }
<<
  \new Voice
  \clef "G_8"
  {
\voiceOne
\set fingeringOrientations = #'(left)
\set strokeFingerOrientations = #'(up)
\override StrokeFinger #'add-stem-support = ##t
\bar ".|:"
\repeat volta 2 {
\tupletSpan 4
\times 2/3 {
 c8   e g\rhi 
 g c'\rhi  c c'\rhi e'\rhm
b,   d g\rhi 
g d'\rhi  b, d'\rhi f'\rhm
}
}
1
\bar "|."
  }
  \new Voice
  {
 \voiceTwo
   \set fingeringOrientations = #'(left)
   \set strokeFingerOrientations = #'(down)
 \override StrokeFinger #'add-stem-support = ##t
4 e\rhp g\rhp c\rhp
 d\

Re: Text in front of Staves

2013-08-14 Thread Kale Good

forgot to mention, i'm running 2.16.2

On 08/13/2013 07:56 PM, Thomas Morley wrote:




2013/8/14 mailto:k...@kalegood.com>>

I see that lilypond supports a cool-looking No. glyph, which is
great. I'd like to get in in front of each stave in order to
number a series of exercises. See attached png for an example.

I'm working on making a version of Giuliani's 120 right hand
studies for clasical guitar.

Hi,

I've typesetted the first two exercises of your png, though without 
fingerings.

This should give you a starting-point.
Btw, I hope you are _not_ going to rebuild these fossil 
right-hand-fingering-symbols. ;)



\version "2.17.24"

\layout {
  ragged-right = ##f
  \context {
\Voice
\override TupletBracket #'bracket-visibility = ##f
\override TupletNumber #'stencil = ##f
  }
  \context {
\Staff
\override VerticalAxisGroup.default-staff-staff-spacing =
  #'((basic-distance . 12)
 (minimum-distance . 7)
 (padding . 1))
  }
  \context {
\Score
\override SystemStartBar #'stencil = ##f
  }
}

<<
  \new Staff \with { instrumentName = "N° 3" }
<<
  \new Voice
  \relative c' {
\bar ".|:"
\repeat volta 2 {
\voiceOne
\tupletSpan 4
\times 2/3 {
c8 e' c e, e'c g e' c c, e' c
b, f'' d d, f' d g, f' d b, f'' d
}
}
1
\bar "|."
  }
  \new Voice
  \relative c' {
\voiceTwo
c4 e g c,
b d g b,
c1
  }
>>

  \new Staff \with { instrumentName = "N° 4" }
<<
  \new Voice
  \relative c' {
\bar ".|:"
\repeat volta 2 {
\voiceOne
\tupletSpan 4
\times 2/3 {
  c8 e g e g c g c e c, c' e
  b, d g d g d' g, d' f b,, d' f
}
}
1
\bar "|."
  }
  \new Voice
  \relative c' {
\voiceTwo
c4 e g c,
b d g b,
c1
  }
>>
>>

HTH,
  Harm



--
Kale Good: Guitar Instructor
phillyguitarlessons.com 
k...@kalegood.com 
phone: (215)260-5383

 * 4705 Baltimore Ave, Phila, PA 19143 -mailing & lessons
 * 1867 Frankford Ave. Phila, PA 19125 -lessons

Google+ 
Facebook 
Read my article "The Seven Secrets to Six String Success 
" at 
GuitarNoise.com 

Leading the Journey from No-Skills-Guitarist to Talented Musician!

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


Re: Text in front of Staves

2013-08-14 Thread Kale Good

Hi Thomas,
Thanks; it works like a charm* until I need a page break; right now its 
just crowding everything on one page. I put it a \pageBreak and nothing 
happened, so I'm guessing that lilypond won't break simultaneous music 
over a page (makes sense). Any overrides for this?


*works like a charm except for your \override VerticalAxisGroup command, 
which I'm not super familiar with (looks right to me). Won't compile 
with it, will compile without it.


wasn't planning on bringing back 19th century guitar fingering notation, 
but now that you mention it... =)


Thanks again,
Kale
On 08/13/2013 07:56 PM, Thomas Morley wrote:




2013/8/14 mailto:k...@kalegood.com>>

I see that lilypond supports a cool-looking No. glyph, which is
great. I'd like to get in in front of each stave in order to
number a series of exercises. See attached png for an example.

I'm working on making a version of Giuliani's 120 right hand
studies for clasical guitar.

Hi,

I've typesetted the first two exercises of your png, though without 
fingerings.

This should give you a starting-point.
Btw, I hope you are _not_ going to rebuild these fossil 
right-hand-fingering-symbols. ;)



\version "2.17.24"

\layout {
  ragged-right = ##f
  \context {
\Voice
\override TupletBracket #'bracket-visibility = ##f
\override TupletNumber #'stencil = ##f
  }
  \context {
\Staff
\override VerticalAxisGroup.default-staff-staff-spacing =
  #'((basic-distance . 12)
 (minimum-distance . 7)
 (padding . 1))
  }
  \context {
\Score
\override SystemStartBar #'stencil = ##f
  }
}

<<
  \new Staff \with { instrumentName = "N° 3" }
<<
  \new Voice
  \relative c' {
\bar ".|:"
\repeat volta 2 {
\voiceOne
\tupletSpan 4
\times 2/3 {
c8 e' c e, e'c g e' c c, e' c
b, f'' d d, f' d g, f' d b, f'' d
}
}
1
\bar "|."
  }
  \new Voice
  \relative c' {
\voiceTwo
c4 e g c,
b d g b,
c1
  }
>>

  \new Staff \with { instrumentName = "N° 4" }
<<
  \new Voice
  \relative c' {
\bar ".|:"
\repeat volta 2 {
\voiceOne
\tupletSpan 4
\times 2/3 {
  c8 e g e g c g c e c, c' e
  b, d g d g d' g, d' f b,, d' f
}
}
1
\bar "|."
  }
  \new Voice
  \relative c' {
\voiceTwo
c4 e g c,
b d g b,
c1
  }
>>
>>

HTH,
  Harm



--
Kale Good: Guitar Instructor
phillyguitarlessons.com 
k...@kalegood.com 
phone: (215)260-5383

 * 4705 Baltimore Ave, Phila, PA 19143 -mailing & lessons
 * 1867 Frankford Ave. Phila, PA 19125 -lessons

Google+ 
Facebook 
Read my article "The Seven Secrets to Six String Success 
" at 
GuitarNoise.com 

Leading the Journey from No-Skills-Guitarist to Talented Musician!

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


Re: Text in front of Staves

2013-08-14 Thread Pierre Perol-Schneider
Hi Harm, Hi Kale,

2013/8/14 Thomas Morley 

>
>   \relative c' {
>

Two small remarks :
1) because of its tessitura, \relative is not needed for the guitar
2) better use \clef "G_8"

Here's Harm's code with "modern" fingerings and an alternative for the "no
left hand finger" in the exercise no.4

\version "2.17.23"
%\version "2.16.2"

%%% Right hand fingerings %%
rhp = -\rightHandFinger #1
rhi = -\rightHandFinger #2
rhm = -\rightHandFinger #3
rha = -\rightHandFinger #4
rhx = -\rightHandFinger #5

 Aletrnate "No Left hand" fingering %
lnf =
#(let ((finger (make-music 'FingeringEvent)))
   (set! (ly:music-property finger 'tweaks)
   (acons 'text #{\markup\stencil #(make-circle-stencil 0.45 0.2 #f)#}
(ly:music-property finger 'tweaks)))
   finger)

%%% score 

\layout {
  ragged-right = ##f
  \context {
\Voice
\override TupletBracket #'bracket-visibility = ##f
\override TupletNumber #'stencil = ##f
  }
  \context {
\Staff
\override VerticalAxisGroup.default-staff-staff-spacing =
  #'((basic-distance . 15)
 (minimum-distance . 10)
 (padding . 1))
  }
  \context {
\Score
\override SystemStartBar #'stencil = ##f
\override NoteColumn #'force-hshift = #0
  }
}

<<
  \new Staff \with { instrumentName = "N° 3" }
<<
  \new Voice
  \clef "G_8"
  {
  \voiceOne
  \set fingeringOrientations = #'(left)
  \set strokeFingerOrientations = #'(up)
  \override StrokeFinger #'add-stem-support = ##t
\bar ".|:"
\repeat volta 2 {
\tupletSpan 4
\times 2/3 {
%mes. 1
c8   e e'\rhm c'\rhi
g e'\rhm c'\rhi c e'\rhm c'\rhi |
%mes. 2
b,   d f'\rhm d'\rhi
g f'\rhm d'\rhi b, f'\rhm d'\rhi |
}
}
% mes. 3
1 |
\bar "|."
  }
  \new Voice
  {
  \voiceTwo
  \set fingeringOrientations = #'(left)
  \set strokeFingerOrientations = #'(down)
  \override StrokeFinger #'add-stem-support = ##t
4   c\rhp
   b,\rhp
% mes. 3
1 |
  }
>>

  \new Staff \with { instrumentName = "N° 4" }
<<
  \new Voice
  \clef "G_8"
  {
\voiceOne
  \set fingeringOrientations = #'(left)
  \set strokeFingerOrientations = #'(up)
  \override StrokeFinger #'add-stem-support = ##t
  \bar ".|:"
\repeat volta 2 {
\tupletSpan 4
\times 2/3 {
  c8   e g\rhi 
  g c'\rhi  c c'\rhi e'\rhm

  b,   d g\rhi 
  g d'\rhi  b, d'\rhi f'\rhm
}
}
1
\bar "|."
  }
  \new Voice
  {
  \voiceTwo
  \set fingeringOrientations = #'(left)
  \set strokeFingerOrientations = #'(down)
  \override StrokeFinger #'add-stem-support = ##t
4 e\rhp g\rhp c\rhp
 d\rhp g\rhp b,\rhp
1
  }
>>
>>

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


Re: Text in front of Staves

2013-08-13 Thread David Rogers
k...@kalegood.com writes:

> I see that lilypond supports a cool-looking No. glyph, which is great.

Unless I'm mistaken, it's not Lilypond giving that cool-looking glyph,
it's the font they were using.

The Unicode designation for that glyph is U+2116 Numero Sign

Some fonts have it, others don't. Or you might do tricks with a capital
N and a small o to make a sign like that yourself, if necessary.

To get it to appear in your score, just paste it in - here's one: №

(I hope the one I just pasted for you is able to survive its trip across
the internet.) :)

If not, use your system's special-character-finding utility (or similar
utility inside a word-processing program) to find the numero sign.

-- 
David R

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


Re: Text in front of Staves

2013-08-13 Thread Thomas Morley
2013/8/14 

> **
>
> I see that lilypond supports a cool-looking No. glyph, which is great. I'd
> like to get in in front of each stave in order to number a series of
> exercises. See attached png for an example.
>
> I'm working on making a version of Giuliani's 120 right hand studies for
> clasical guitar.
>
Hi,

I've typesetted the first two exercises of your png, though without
fingerings.
This should give you a starting-point.
Btw, I hope you are _not_ going to rebuild these fossil
right-hand-fingering-symbols. ;)


\version "2.17.24"

\layout {
  ragged-right = ##f
  \context {
\Voice
\override TupletBracket #'bracket-visibility = ##f
\override TupletNumber #'stencil = ##f
  }
  \context {
\Staff
\override VerticalAxisGroup.default-staff-staff-spacing =
  #'((basic-distance . 12)
 (minimum-distance . 7)
 (padding . 1))
  }
  \context {
\Score
\override SystemStartBar #'stencil = ##f
  }
}

<<
  \new Staff \with { instrumentName = "N° 3" }
<<
  \new Voice
  \relative c' {
\bar ".|:"
\repeat volta 2 {
\voiceOne
\tupletSpan 4
\times 2/3 {
c8 e' c e, e'c g e' c c, e' c
b, f'' d d, f' d g, f' d b, f'' d
}
}
1
\bar "|."
  }
  \new Voice
  \relative c' {
\voiceTwo
c4 e g c,
b d g b,
c1
  }
>>

  \new Staff \with { instrumentName = "N° 4" }
<<
  \new Voice
  \relative c' {
\bar ".|:"
\repeat volta 2 {
\voiceOne
\tupletSpan 4
\times 2/3 {
  c8 e g e g c g c e c, c' e
  b, d g d g d' g, d' f b,, d' f
}
}
1
\bar "|."
  }
  \new Voice
  \relative c' {
\voiceTwo
c4 e g c,
b d g b,
c1
  }
>>
>>

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


Re: Text in front of Staves

2013-08-13 Thread Eluze
Kale Good-2 wrote
> I see that lilypond supports a cool-looking No. glyph, which is great.
> I'd like to get in in front of each stave in order to number a series of
> exercises. See attached png for an example. 
> 
> I'm working on making a version of Giuliani's 120 right hand studies for
> clasical guitar. 

how about

\new Staff <<
  \set Staff.instrumentName="No 3."
  \mergeDifferentlyHeadedOn
  \new Voice \relative {
\voiceOne
\tuplet 3/2 {c'8 e' c}
  }
  \new Voice \relative { 
\voiceTwo c'4 e g c,
  }
>>

please also tell us where/when you're going to share these exercises!

thanks
Eluze



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Text-in-front-of-Staves-tp149121p149123.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