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

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

Re: Notation titre et pulsation, plus transposition.


From: aikizen
Subject: Re: Notation titre et pulsation, plus transposition.
Date: Wed, 03 Oct 2018 08:34:57 +0200
User-agent: Evolution 3.30.1-1

et si je veux la transposition pour du Sib ?
c'est peut-être Mib Sib qui est à la tierce... ? non ?

Le mardi 02 octobre 2018 à 17:39 +0200, Pierre Perol-Schneider a
écrit :
> ... ce qu'on peut même préciser :
> 
> %%%
> \version "2.18.2"
> 
> up = \upbow
> do = \downbow
> 
> musique = \relative c {
>   \tempo 4 = 60
>   \key c\major % <= obligatoire pour transposer.
>   c d e c c d e c
>   e f g2 e4 f g2
>   g8 a g f e4 c g'8 a g f e4 c
>   c4 g c2 c4 g c2
> 
> }
> 
> \header {
>   title = "Mon titre"
> }
> 
> \score {
>   \new StaffGroup 
>   \with { instrumentName = "Guitare" }
>   <<
>     \new Staff { \clef "treble_8" \musique }
>     \new TabStaff { \clef "moderntab" \musique }
>   >>
>   \layout {}
> } 
> 
> \score {
>   <<
>     \new Staff 
>     \with { 
>       instrumentName =  \markup\concat { "Saxo alto Mi" \tiny\raise
> #.3 \flat } 
>     } { \transpose c a' \musique }
>   >>
>   \layout { 
>     indent = 27
>   }
> } 
> %%
> 
> Le mar. 2 oct. 2018 à 17:33, Pierre Perol-Schneider <
> address@hidden> a écrit :
> > Merci (effectivement, je viens de vérifier et l'alto est bien en
> > Mib -- tu as été plus rapide que moi) !
> > Donc :
> > 
> > %%
> > \version "2.18.2"
> > 
> > up = \upbow
> > do = \downbow
> > 
> > musique = \relative c {
> >   \tempo 4 = 60
> >   \key c\major % <= obligatoire pour transposer.
> >   c d e c c d e c
> >   e f g2 e4 f g2
> >   g8 a g f e4 c g'8 a g f e4 c
> >   c4 g c2 c4 g c2
> > 
> > }
> > 
> > \header {
> >   title = "Mon titre"
> > }
> > 
> > \score {
> >   \new StaffGroup 
> >   \with { instrumentName = "Guitare" }
> >   <<
> >     \new Staff { \clef "treble_8" \musique }
> >     \new TabStaff { \clef "moderntab" \musique }
> >   >>
> >   \layout {}
> > } 
> > 
> > \score {
> >   <<
> >     \new Staff 
> >     \with{ instrumentName = "Saxo alto" } 
> >     { \transpose c a' \musique }
> >   >>
> >   \layout { 
> >     indent = 20
> >   }
> > }
> > 
> > %% 
> > 
> > Cordialement,
> > Pierre
> > 
> > 
> > Le mar. 2 oct. 2018 à 17:27, Christophe Pochon <
> > address@hidden> a écrit :
> > > Petite précision, pour le sax alto, il faut monter d'une sixte
> > > majeure, et pas d'une tierce majeure. C'est donc \transpose c a'
> > >   qu'il faut mettre
> > > 
> > > A+
> > > 
> > > Christophe Pochon
> > > 
> > > 
> > > 
> > > Le mar. 2 oct. 2018 à 17:24, Pierre Perol-Schneider <
> > > address@hidden> a écrit :
> > > > Bonjour,
> > > > 
> > > > %%%
> > > > \version "2.18.2"
> > > > 
> > > > up = \upbow
> > > > do = \downbow
> > > > 
> > > > musique = \relative c {
> > > >   \tempo 4 = 60
> > > >   \key c\major % <= obligatoire pour transposer.
> > > >   c d e c c d e c
> > > >   e f g2 e4 f g2
> > > >   g8 a g f e4 c g'8 a g f e4 c
> > > >   c4 g c2 c4 g c2
> > > > 
> > > > }
> > > > 
> > > > \header {
> > > >   title = "Mon titre"
> > > > }
> > > > 
> > > > \score {
> > > >   \new StaffGroup 
> > > >   \with { instrumentName = "Guitare" }
> > > >   <<
> > > >     \new Staff { \clef "treble_8" \musique }
> > > >     \new TabStaff { \clef "moderntab" \musique }
> > > >   >>
> > > >   \layout {}
> > > > } 
> > > > 
> > > > \score {
> > > >   <<
> > > >     \new Staff 
> > > >     \with{ instrumentName = "Saxo alto" } 
> > > >     { \transpose c e' \musique }
> > > >   >>
> > > >   \layout { 
> > > >     indent = 20
> > > >   }
> > > > }
> > > > %%%
> > > > 
> > > > Cordialement,
> > > > Pierre
> > > > 
> > > > Le mar. 2 oct. 2018 à 17:10, aikizen <address@hidden> a écrit :
> > > > > bonjour,
> > > > > 
> > > > > j'ai :
> > > > > 
> > > > > \version "2.18.2"
> > > > > 
> > > > > up = \upbow
> > > > > do = \downbow
> > > > > 
> > > > > musique = \relative c { 
> > > > > 
> > > > >   c d e c c d e c
> > > > >   e f g2 e4 f g2
> > > > >   g8 a g f e4 c g'8 a g f e4 c
> > > > >   c4 g c2 c4 g c2
> > > > > 
> > > > > }
> > > > > 
> > > > > \score {
> > > > >   <<
> > > > >     \new Staff { \clef "treble_8" \musique }
> > > > >     \new TabStaff { \musique }
> > > > >   >>
> > > > >   \layout {}
> > > > > } 
> > > > > 
> > > > > je voudrais y rajouter le titre et la pulsation à la noir.
> > > > > 
> > > > > ainsi que faire une transposition pour un saxophone alto,
> > > > > donc a la
> > > > > tierce superieur si je ne me trompe pas. merci de confirmer.
> > > > > Sachant
> > > > > que la partition guitare est deja noté une octave au dessus.
> > > > > 
> > > > > mzeci,
> > > > > bien cordialement,
> > > > > aikizen.
> > > > > 
> > > > > 
> > > > > _______________________________________________
> > > > > liste de diffusion lilypond-user-fr
> > > > > address@hidden
> > > > > https://lists.gnu.org/mailman/listinfo/lilypond-user-fr
> > > > 
> > > > _______________________________________________
> > > > 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]