lilypond-user-fr
[Top][All Lists]
Advanced

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

comprendre une exemple.


From: white-wolf
Subject: comprendre une exemple.
Date: Fri, 12 Apr 2019 15:14:35 +0200
User-agent: Evolution 3.30.5-1

Bonjour,
j'ai cette exemple :
----

\version "2.18.2"

%{
Antisèche (uniquement pour ceux qui connaissent mal leur manche) :
    0    1    2    3    4    etc.
1   e'   f'  fis'  g'  gis'
2   b    c'  cis'  d'  dis'
3   g   gis   a   ais   b
4   d   dis   e    f   fis
5   a,  ais,  b,   c   cis
6   e,   f,  fis,  g,  gis,
%}

global = {
  \time 4/4
  % option :
  \numericTimeSignature
  \key c\major %% <= à préciser pour d'éventuelles transpositions
futures
  \tempo "Verse."
  \mark\markup\small "Capo. VI"
  \partial 2. %% <= anacrouse
}

maMusiqueVoixUn = {
  % mes.0
    c c c c 
  | % mes.1
    c c c c 
  | % mes.2
    % etc.
}

maMusiqueVoixDeux = {
  % mes.0
    c c c c 
  | % mes.1
    c c c c 
  | % mes.2
    % etc.
}

mesAccords = \chordmode {
  %mes.0
    c c c c 
  | % mes.1
    c c c c 
  | % mes.2
    % etc. 
}

%%% Partition :

\paper {
  ragged-right = ##f
}

\header {
  title = "Passenger"
  subtitle = \markup\normal-text "My Heart's On Fire"
  composer = "Tabbed by Garett Evans"
}

\markup\italic "Tablature avec accords :"
\score {
  <<
    \new ChordNames \mesAccords
    \new TabStaff <<
      \global
      \clef "moderntab"
      \tabFullNotation
      << \maMusiqueVoixUn \\ \maMusiqueVoixDeux >>
    >>
  >>
  \layout {
    \context {
      \TabStaff
      instrumentName = "Guitare"
    }
  }
}

\markup\italic "portée standard :"
\score {
  \new Staff <<
    \clef "G_8"
    \new Voice { \global \voiceOne \maMusiqueVoixUn }
    \new Voice { \global \voiceTwo \maMusiqueVoixDeux }
  >>
  \layout {
    \context {
      \Staff
      instrumentName = "Guitare"
    }
  }
}

\markup\italic "portée standard avec accords :"
\score {
  <<
    \new ChordNames \mesAccords
    \new Staff <<
      \clef "G_8"
      \new Voice { \global \voiceOne \maMusiqueVoixUn }
      \new Voice { \global \voiceTwo \maMusiqueVoixDeux }
    >>
  >>
  \layout {
    \context {
      \Staff
      instrumentName = "Guitare"
    }
  }
}

\markup\italic "portée rythmique avec accords :"
\score {
  <<
    \new ChordNames \mesAccords
    \new Staff <<
      \clef "G_8"
      \new Voice { \improvisationOn \global\maMusiqueVoixUn }
    >>
  >>
  \layout {
    \context {
      \Voice
      \consists Pitch_squash_engraver
    }
    \context {
      \Staff
      instrumentName = "Guitare"
    }
  }
}

----

J'ai essayé de mettre des C partour mais rien ne change dans le pdf.
Je voudrai mettre des C partout pour après y mettre mes accords d'une
compo à moi.

Bien à vous,
White Wolf




reply via email to

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