\version "2.16.0" #(define RH rightHandFinger) % Function contributed by Thomas Morley: % http://lsr.dsi.unimi.it/LSR/Item?id=857 barre = #(define-music-function (parser location strg music)(number? ly:music?) #{ \set TabStaff.minimumFret = $strg \set TabStaff.restrainOpenStrings = ##t \once\override TextSpanner #'(bound-details left text) = #(format #f "B address@hidden" strg) \once\override TextSpanner #'font-shape = #'upright \once\override TextSpanner #'bound-details #'left #'stencil-align-dir-y = #CENTER \once\override TextSpanner #'style = #'line \once\override TextSpanner #'bound-details #'right #'text = \markup \draw-line #'(0 . -1) \once\override TextSpanner #'to-barline = ##t \once\override TextSpanner #'(bound-details right padding) = #1.5 <>\startTextSpan $music <>\stopTextSpan \unset TabStaff.minimumFret \unset TabStaff.restrainOpenStrings #}) \header { title = "Sicilienne (Op 78)" composer = "Gabriel Fauré" copyright = "Domaine Public - Transcription guitare Ludovic Alexandre Morin - revue et doigtée Olivier Flatrès - 20/11/05" mutopiatitle = "Sicilienne" mutopiacomposer = "FaureG" mutopiaopus = "O 78" mutopiainstrument = "Guitar" date = "19th Century" source = "Transcription" style = "Romantic" typesetter = "Olivier Flatrs" maintainer = "Federico Bruni" lastupdated = \markup { \simple #(strftime "%x" (localtime (current-time))) } footer = "Mutopia-2005/11/25-636" tagline = \markup { \override #'(box-padding . 1.0) \override #'(baseline-skip . 2.7) \box \center-column { \small \line { Sheet music from \with-url #"http://www.MutopiaProject.org" \line { \teeny www. MutopiaProject \teeny .org \hspace #0.5 } • \hspace #0.5 \italic Free to download, with the \italic freedom to distribute, modify and perform. } \line { \small \line { Typeset using \with-url #"http://www.LilyPond.org" \line { \teeny www. LilyPond \teeny .org } by \typesetter \hspace #-1.0 • Updated by \maintainer on \lastupdated } } \line { \teeny \line { This sheet music has been placed in the public domain by the typesetter, for details see: \hspace #-0.5 \with-url #"http://creativecommons.org/licenses/publicdomain" http://creativecommons.org/licenses/publicdomain } } } } } global = { \set Score.alternativeNumberingStyle = #'numbers \time 6/8 \key bes \major } first = \relative c { \global \partial 8 8_> \repeat volta 2 { %\override StringNumber #'padding = #1.5 16-> d\5 \barre3 { -> -> 8-> } | 16-> a-> g8\2-> \barre3 { a16-4 c,\3 d c\3 d8-> } | \barre1 { 8.-> 16-> e8-> d8.-> c16-> e8-> } | 16-> fis a fis 8 -> | g16-> d\5 \barre 3 { -> g\4 d'-> f, bes d f8\2-> } | \barre 1 { 16-> -> f8-> } 16-> g, b g f'8\2-> | 16-> g 8-> 16-> 8->^\coda | } \alternative { { 8-> 16 g\4 d\5 4-> 8-> | } { g8-> g16\4 d\5 g\4 d\5 g4-> r8 | } } \repeat volta 2 { \barre 5 { 16-> -> 8-> 16-> -> 8-> } | \barre 8 { 16-> -> 8-> } \barre 1 { 16-> 8-> } | 16-> -> 8-> \barre 1 { 16-> -> 8-> } | 16-> -> 8-> \barre 3 4-> r8 | } \break \repeat volta 2 { 16-> a,\4 ees'8\3 \barre 3 { 16 g bes8 } | \barre 6 { 16-> -> 8-> } \barre 5 { 16-> -> 8-> } | 16-> a,\4 ees'8\3 \barre 3 { 16-> g bes8 } | } \alternative { { 16-> 8-> \barre 2 { 8-> 16 } | } { 16-> 8-> 4.->^\fermata | } } \bar "||" \break %% Coda \mark \markup { \musicglyph #"scripts.coda" } \barre 3 { 16-> } \harmonicByFret #5 g,4.\3\fermata^"Octav." | \bar "|." \stopStaff s1 } second = \relative c { \global \set stringNumberOrientations = #'(down) \partial 8 s8 | \repeat volta 2 { 4. f | e'4.\5 f\4 | 16 8~ bes bes,16 f' bes8~ bes | 4.~ d | g4. f | 4. | c'4. d, | } \alternative { { 4. s | } { 4. s | } } \repeat volta 2 { 4. | 4. | 4. | 4. 4 r8 | } \repeat volta 2 { 4. | 4. | 4. | } \alternative { { 4. | } { 4. ^" D.C. al Coda" | } } 4. | } music = { \new StaffGroup << \new Staff = "guitar" \with { midiInstrument = "acoustic guitar (nylon)" fingeringOrientations = #'(left) %\override Fingering #'font-size = #-8 % Avoid collision between stems and string numbers %\override StringNumber #'self-alignment-X = #RIGHT \override StringNumber #'add-stem-support = ##t \override Fingering #'add-stem-support = ##t \override Fingering #'whiteout = ##t \override StringNumber #'stencil = ##f \override StrokeFinger #'font-size = #-2 \override StrokeFinger #'whiteout = ##t } << \context Voice = "first voice" { \clef "G_8" \voiceOne \first } \context Voice = "second voice" { \clef "G_8" \voiceTwo \second } >> \new TabStaff = "tab" \with { stringTunings = #guitar-drop-d-tuning } << \context TabVoice = "tab first voice" { \voiceOne \first } \context TabVoice = "tab second voice" {\voiceTwo \second } >> >> } \score { \music \layout{} } \score { \unfoldRepeats \music \midi { \tempo 4 = 100 } }