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

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

changement de rythmique 7/8 - 4/4


From: jean-christophe
Subject: changement de rythmique 7/8 - 4/4
Date: Thu, 11 Nov 2021 15:28:55 +0100
User-agent: Evolution 3.42.0 FreeBSD GNOME Team

http://lilybin.com/a6uxba/13

bonjour, j'essai d'écrire :
\version "2.18.2"

up = \upbow
do = \downbow

%{
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 7/8
  % option :
  \numericTimeSignature
  \key c\major %% <= à préciser pour d'éventuelles transpositions
futures
  \tempo "70"
%  \mark\markup\small "Capo. VI"
%  \partial 2. %% <= anacrouse
}

maMusiqueVoixUn =
  {
    \repeat volta 4
    {
      \repeat volta 2
      {
         % mes.0
        |  c8 c c c c c4
        |  c8 c c c c c4
        |  c8 c c c c c4
        |  c8 c c c c c4
         % mes.1
        |  c8 c c c c c4
        |  c8 c c c c c4
        |  c8 c c c c c4
        |  c8 c c c c c4
         % mes.2
        |  r8 c\up c\do c\up (c4.)^"x2"
 /time 4/4    
          % mes.0
         |  c c c c c c c c
         |  c c c c c c c c
         |  c c c c c c c c
         |  c c c c c c c c
          % mes.1


      
     % mes.0
    |  c8 c c c c c4
    |  c8 c c c c c4
    |  c8 c c c c c4
    |  c8 c c c c c4
     % mes.1
    |  c8 c c c c c4
    |  c8 c c c c c4
    |  c8 c c c c c4
    |  c8 c c c c c4
     % mes.2
    |  c2.\bar "|."
  }
}

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

mesAccords = \chordmode {
    % mes.0
     e2..:m
    % mes.1
     c:7
    % mes.2
     a:m9
    % mes.3
     g:6
    % mes.4
     e2..:m
    % mes.5
     c:7
    % mes.6
     a:m9
    % mes.7
     g:6
    % mes.8
     g:6
    % partie deux
    % mes.0
     e2..:m
    % mes.1
     c:7
    % mes.2
     a:m9
    % mes.3
     g:6
    % mes.4
     e2..:m
    % mes.5
     c:7
    % mes.6
     a:m9
    % mes.7
     g:6
    % mes.8
     g:6
    % etc.
}

%%% Partition :

\paper {
  ragged-right = ##f
}

\header {
  title = "Exercice rythmique"
  subtitle = \markup\normal-text "Rythme en 7/8"
  composer = "Jean-Christophe White"
}
%
%%\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"
    }
  }
}

mais ca ne veux pas compile.
un coups de mains serai bien venu.

cdlt,
jean-christophe white



reply via email to

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