lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: lilypond fingeringOrientations spanner?


From: Pierre Perol-Schneider
Subject: Re: lilypond fingeringOrientations spanner?
Date: Wed, 10 Dec 2014 11:39:47 +0100

Hi Peter,
try :

\version "2.18.2"

\header {
  tagline = ##f
}

scoreAGlobal = {
  \key d \major
  \time 4/4
}

upper = \relative c' {
  \scoreAGlobal
  \set fingeringOrientations = #'(up)
  <cis-3>16<e-0><a,-2> b
  <c
  -\tweak extra-offset #'(-.3 . 0)
       \finger\markup\concat {
         \with-dimensions #'(0 . 0) #'(0 . 0)
         \override #'(thickness . 1.3)
         \rotate #-9
         \raise #1
         \draw-line #'(-3.5 . 0)
         \hspace #.6
         "2"
       }
  -1>8
 
  cis d dis e f |
  fis g
  <gis
    \finger\markup\concat {
      \with-dimensions #'(0 . 0) #'(0 . 0)
      \override #'(thickness . 1.3)
      \rotate #3.5
      \raise #-.6
      \override #'(on . .8)
      \override #'(off . .4)
      \draw-dashed-line #'(-39.5 . 0)
      \hspace #.6
      "2"
    }
    \finger\markup\concat {
      \with-dimensions #'(0 . 0) #'(0 . 0)
      \override #'(thickness . 1.3)
      \rotate #3.5
      \raise #-.6
      \override #'(on . .8)
      \override #'(off . .4)
      \draw-dashed-line #'(-39.5 . 0)
      \hspace #.6
      "1"
    }>
  <a-3-1> bes b
  <c
  \finger\markup\concat {
      \with-dimensions #'(0 . 0) #'(0 . 0)
      \override #'(thickness . 1.3)
      \rotate #3.5
      \override #'(on . .8)
      \override #'(off . .4)
      \draw-dashed-line #'(-13 . 0)
      \hspace #.6
      "3"
    }
    \finger\markup\concat {
      \with-dimensions #'(0 . 0) #'(0 . 0)
      \override #'(thickness . 1.3)
      \rotate #3.5
      \override #'(on . .8)
      \override #'(off . .4)
      \draw-dashed-line #'(-13 . 0)
      \hspace #.6
      "1"
    }>
  <cis-2-4>
}

lower = \relative c {
  \scoreAGlobal
  b4\rest a'16 a, ais' a, b' a, bis' a, cis' a, d' a, |
  dis' a, e'' a,, eis'' a,, fis'' a,, g'' a,, gis'' a,, a'' a,, g'' a,,
}

\score {
  \new Staff { \clef "treble_8" << \upper \\ \lower >> }
  \layout { }
}


HTH,
Pierre

2014-12-10 11:13 GMT+01:00 Peter Terpstra <address@hidden>:

Dear People,
Don't know if this exists, could not find it on internet, guess that if it exists people in this group would now about it.

Would like to draw a line between the numbers of the fingeorientations, a line from finger 1 to 1, 2 to 2, 3 to 3.
Tried to do something with \draw-line but could not make a fit.

Example without lines here:

\version "2.18.2"

\header {
    tagline = ##f
}

\paper {
  #(set-paper-size "a4")
}

scoreAGlobal = {
  \key d \major
  \time 4/4
}

upper = \relative c' {
  \scoreAGlobal
    \set fingeringOrientations = #'(up)
    <cis-3>16<e-0><a,-2> b<c-2-1>8 cis d dis e f | fis g <gis-2-1> <a-3-1> bes b <c-3-1> <cis-2-4>
}

lower = \relative c {
  \scoreAGlobal
   b4\rest a'16 a, ais' a, b' a, bis' a, cis' a, d' a, | dis' a, e'' a,, eis'' a,, fis'' a,, g'' a,, gis'' a,, a'' a,, g'' a,,

}

\score {
  \new Staff { \clef "treble_8" << \upper \\ \lower >> }
  \layout { }
}




_______________________________________________
lilypond-user mailing list
address@hidden
https://lists.gnu.org/mailman/listinfo/lilypond-user


reply via email to

[Prev in Thread] Current Thread [Next in Thread]