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

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

Re: comprendre une exemple.


From: Christophe Pochon
Subject: Re: comprendre une exemple.
Date: Fri, 12 Apr 2019 16:03:48 +0200

Bonjour,

Je ne comprends pas la question. Qu'est-ce qui ne fonctionne pas ?

Christophe Pochon



Le ven. 12 avr. 2019 à 15:14, white-wolf <address@hidden> a écrit :
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


_______________________________________________
liste de diffusion lilypond-user-fr
address@hidden
https://lists.gnu.org/mailman/listinfo/lilypond-user-fr

reply via email to

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