2013/8/14 <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
            }
        }
        <e, g c e>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
            }
        }
        <e, g c e>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

Reply via email to