From MAILER-DAEMON Wed May 1 13:11:33 2024 Return-Path: Date: Wed, 01 May 2024 13:11:32 +0000 From: Raphael Hardy via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Timline_pour_musique_de?= =?UTF-8?Q?_film?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_66323f84cb0c0_3334ef339dc404030"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30125 X-Discourse-Topic-Id: 5696 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/timline-pour-musique-de-film/5696 ----==_mimepart_66323f84cb0c0_3334ef339dc404030 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 J=E2=80=99avais vu passer [ce thread](https://lists.gnu.org/archive/html/lily= pond-user/2024-03/msg00125.html) int=C3=A9ressant sur la liste anglophone, ma= is peut-=C3=AAtre que vous l=E2=80=99avez vu aussi? A ce que je comprends cette approche est plut=C3=B4t bas=C3=A9e sur le midi --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/timline-pour-musique-de-film/5696/3). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_66323f84cb0c0_3334ef339dc404030 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Raphael Hardy raphaelhardy
Mai 1<= /span>

J=E2=80=99avais vu passer ce thread int= =C3=A9ressant sur la liste anglophone, mais peut-=C3=AAtre que vous l=E2=80= =99avez vu aussi?
A ce que je comprends cette approche est plut=C3=B4t bas=C3=A9e sur le midi


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_66323f84cb0c0_3334ef339dc404030-- From MAILER-DAEMON Wed May 1 13:33:01 2024 Return-Path: Date: Wed, 01 May 2024 13:33:01 +0000 From: MartialR via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Timline_pour_musique_de?= =?UTF-8?Q?_film?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6632448ce250f_3334ef33a2c4095cd"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30126 X-Discourse-Topic-Id: 5696 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/timline-pour-musique-de-film/5696 ----==_mimepart_6632448ce250f_3334ef33a2c4095cd Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour,=20 Mais c'est parfait pour mesurer le temps=20 Merci Jean=20 ``` #(define (Custom_engraver!! context) (define (format-time seconds) (let* ((minutes (euclidean-quotient seconds 60)) (rest (euclidean-remainder seconds 60)) (seconds (euclidean-quotient rest 1)) (rest (euclidean-remainder rest 1))) (string-append (if (zero? minutes) "" (format #f "~a:" minutes)) (format #f "~a:~a" seconds (round (* rest 24)))))) (let ((wholes-per-minute 15) (last-time ZERO-MOMENT) (total-time 0) (marks '())) (make-engraver ((process-music engraver) (let* ((new-time (ly:context-current-moment context)) (time-delta (ly:moment-main (ly:moment-sub new-time last-time))) (new-wholes-per-minute (and=3D> (ly:context-property context 'tempoWholesPerMinute #f) ly:moment-main))) (set! total-time (+ total-time (* 60 (/ time-delta wholes-per-minute)))) (set! last-time new-time) (when new-wholes-per-minute (set! wholes-per-minute new-wholes-per-minute)))) (acknowledgers ((text-mark-interface engraver grob source-engraver) (set! marks (cons grob marks)))) ((process-acknowledged engraver) (for-each (lambda (grob) (when (assq-ref (ly:grob-property grob 'details) 'time-mar= k) (ly:grob-set-property! grob 'text (format-time total-time)))) marks) (set! marks '()))))) \layout { \context { \Score \consists #Custom_engraver!! } } timeMark =3D \tweak details.time-mark ##t \tweak color "red" \textEndMark "Abracadabra" { \tempo 4 =3D 80=20 c' c' c' c' \timeMark \tempo 4 =3D 180=20 c' c' c' c' \timeMark \tempo 4 =3D 60 \repeat unfold 60 c'4 \timeMark =20 } ``` --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/timline-pour-musique-de-film/5696/4). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6632448ce250f_3334ef33a2c4095cd Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
MartialR
Mai 1<= /span>

Bonjour,
Mais c'est parfait pour mesurer le temps
Merci Jean

#(define (Custom_engraver!! co=
ntext)
   (define (format-time seconds)
     (let* ((minutes (euclidean-quotient seconds 60))
            (rest (euclidean-remainder seconds 60))
            (seconds (euclidean-quotient rest 1))
            (rest (euclidean-remainder rest 1)))
       (string-append (if (zero? minutes) "" (format #f "~a:" minutes))
                      (format #f "~a:~a" seconds (round (* rest 24))))))
   (let ((wholes-per-minute 15)
         (last-time ZERO-MOMENT)
         (total-time 0)
         (marks '()))
     (make-engraver
      ((process-music engraver)
       (let* ((new-time (ly:context-current-moment context))
              (time-delta (ly:moment-main (ly:moment-sub new-time last-time)))
              (new-wholes-per-minute
               (and=3D> (ly:context-property context 'tempoWholesPerMinute=
 #f)
                      ly:moment-main)))
         (set! total-time
               (+ total-time (* 60 (/ time-delta wholes-per-minute))))
         (set! last-time new-time)
         (when new-wholes-per-minute
           (set! wholes-per-minute new-wholes-per-minute))))
      (acknowledgers
       ((text-mark-interface engraver grob source-engraver)
        (set! marks (cons grob marks))))
      ((process-acknowledged engraver)
       (for-each (lambda (grob)
                   (when (assq-ref (ly:grob-property grob 'details) 'time-mar=
k)
                     (ly:grob-set-property! grob 'text (format-time
                                                        total-time))))
                 marks)
       (set! marks '())))))

\layout {
  \context {
    \Score
    \consists #Custom_engraver!!
  }
}

timeMark =3D \tweak details.time-mark ##t \tweak color "red" \textEndMark
"Abracadabra"

{
  \tempo 4 =3D 80=20
  c' c' c' c'
  \timeMark
     \tempo 4 =3D 180=20
  c' c' c' c'
  \timeMark
  \tempo 4 =3D 60
  \repeat unfold 60 c'4
  \timeMark
=20
}

Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6632448ce250f_3334ef33a2c4095cd-- From MAILER-DAEMON Thu May 2 08:19:19 2024 Return-Path: Date: Thu, 02 May 2024 08:19:19 +0000 From: Olivier Charade via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Timline_pour_musique_de?= =?UTF-8?Q?_film?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_66334c8766422_3334ef33a18415235"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30127 X-Discourse-Topic-Id: 5696 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/timline-pour-musique-de-film/5696 ----==_mimepart_66334c8766422_3334ef33a18415235 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Houl=C3=A0! Je m'attendais =C3=A0 ce que la r=C3=A9ponse ne soit pas simple mais l=C3=A0,= il faut le niveau Champollion pour tout d=C3=A9chiffrer. D=C3=A9j=C3=A0 merci beaucoup, c'est super : m=C3=AAme sans comprendre j'obti= ens un affichage qui s'approche de ce que je cherche. Je cherche =C3=A0 comprendre en me basant sur les langages que je connais. D=C3=A9j=C3=A0 le format n'est pas exactement comme en C, mais je pense que j= e dois pouvoir ajouter l'heure devant (les time codes commencent classiquemen= t =C3=A0 1:00:00.00; on m'a dit une fois que le premier chiffre correspondait= historiquement au num=C3=A9ro de bobine). Mais comment force-t-on la valeur du temps, que ce soit au d=C3=A9but ou en c= ours de morceau? Je n'ai pas compris d'o=C3=B9 sortait ZERO-MOMENT. Ensuite, je comprends qu'il y a un tempo par d=C3=A9faut dans Lilypond =C3=A0= 60 =C3=A0 la noire puisqu'il arrive =C3=A0 sortir un time code en fin de pre= mi=C3=A8re mesure avant toute indication de tempo? Comment j'habille \timeMark (box autour, centr=C3=A9 sur barre de mesure, etc= .)? --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/timline-pour-musique-de-film/5696/5). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_66334c8766422_3334ef33a18415235 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Olivier Charade olicha
Mai 2<= /span>

Houl=C3=A0!
Je m'attendais =C3=A0 ce que la r=C3=A9ponse ne soit pas simple mais l=C3=A0,= il faut le niveau Champollion pour tout d=C3=A9chiffrer.
D=C3=A9j=C3=A0 merci beaucoup, c'est super : m=C3=AAme sans comprendre j'obti= ens un affichage qui s'approche de ce que je cherche.
Je cherche =C3=A0 comprendre en me basant sur les langages que je connais.
D=C3=A9j=C3=A0 le format n'est pas exactement comme en C, mais je pense que j= e dois pouvoir ajouter l'heure devant (les time codes commencent classiquemen= t =C3=A0 1:00:00.00; on m'a dit une fois que le premier chiffre correspondait= historiquement au num=C3=A9ro de bobine).
Mais comment force-t-on la valeur du temps, que ce soit au d=C3=A9but ou en c= ours de morceau? Je n'ai pas compris d'o=C3=B9 sortait ZERO-MOMENT.
Ensuite, je comprends qu'il y a un tempo par d=C3=A9faut dans Lilypond =C3=A0= 60 =C3=A0 la noire puisqu'il arrive =C3=A0 sortir un time code en fin de pre= mi=C3=A8re mesure avant toute indication de tempo?
Comment j'habille \timeMark (box autour, centr=C3=A9 sur barre de mesure, etc= .)?


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_66334c8766422_3334ef33a18415235-- From MAILER-DAEMON Thu May 2 09:36:18 2024 Return-Path: Date: Thu, 02 May 2024 09:36:18 +0000 From: MartialR via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Timline_pour_musique_de?= =?UTF-8?Q?_film?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_66335e9279115_3334ef339dc420633"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30128 X-Discourse-Topic-Id: 5696 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/timline-pour-musique-de-film/5696 ----==_mimepart_66335e9279115_3334ef339dc420633 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour plus proche du mod=C3=A8le :=20 ``` \version "2.24" %%%%%%%%%%%%%%%%%%%%%%%%%%%% %la fonction pour afficheir le temps d'apr=C3=A8s Jean #(define (Custom_engraver!! context) (define (format-time seconds) (let* ((minutes (euclidean-quotient seconds 60)) (rest (euclidean-remainder seconds 60)) (seconds (euclidean-quotient rest 1)) (rest (euclidean-remainder rest 1))) (string-append (if (zero? minutes) "" (format #f "~a:" minutes)) (format #f "~a:~a" seconds (round (* rest 24)))))) (let ((wholes-per-minute 15) (last-time ZERO-MOMENT) (total-time 0) (marks '())) (make-engraver ((process-music engraver) (let* ((new-time (ly:context-current-moment context)) (time-delta (ly:moment-main (ly:moment-sub new-time last-time))) (new-wholes-per-minute (and=3D> (ly:context-property context 'tempoWholesPerMinute #f) ly:moment-main))) (set! total-time (+ total-time (* 60 (/ time-delta wholes-per-minute)))) (set! last-time new-time) (when new-wholes-per-minute (set! wholes-per-minute new-wholes-per-minute)))) (acknowledgers ((text-mark-interface engraver grob source-engraver) (set! marks (cons grob marks)))) ((process-acknowledged engraver) (for-each (lambda (grob) (when (assq-ref (ly:grob-property grob 'details) 'time-mar= k) (ly:grob-set-property! grob 'text (format-time total-time)))) marks) (set! marks '()))))) \layout { \context { \Score \consists #Custom_engraver!! } } timeMark =3D \tweak details.time-mark ##t \tweak color "red" \textEndMark=20 "Abracadabra" %%%%%%%%%%%%%%%%%%%%%%%%%%%% % le format=20 rhytMic =3D { \override Score.MetronomeMark.padding =3D #4 \clef percussion \hide TabNoteHead \hide NoteHead \override NoteHead.no-ledgers =3D ##t \override StaffSymbol.line-count =3D #1 \numericTimeSignature \stemDown } structure =3D { =20 \tempo 4=3D 60=20 r1 \bar"||"=20 r1 \timeMark r1=20 % \tempo 4=3D120 \timeMark r1=20 \time 3/4 R2. \timeMark \tempo 4 =3D 180 \time 4/4 r1 r1 \timeMark } << \new RhythmicStaff \with { } { =20 \new Voice =3D "myRhythm" \relative { \rhytMic \time 4/4 \tweak color "red" \textMark "0.0" \repeat unfold 8 { c4 c c c } } } \new Staff \relative {=20 R1 R1 R1 R1=20 R2.=20 R1 R1 R1 } \new Devnull \structure >> ``` --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/timline-pour-musique-de-film/5696/6). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_66335e9279115_3334ef339dc420633 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
MartialR
Mai 2<= /span>

Bonjour
plus proche du mod=C3=A8le :

\version "2.24"
%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%la fonction pour afficheir le temps d'apr=C3=A8s Jean
#(define (Custom_engraver!! context)
   (define (format-time seconds)
     (let* ((minutes (euclidean-quotient seconds 60))
            (rest (euclidean-remainder seconds 60))
            (seconds (euclidean-quotient rest 1))
            (rest (euclidean-remainder rest 1)))
       (string-append (if (zero? minutes) "" (format #f "~a:" minutes))
                      (format #f "~a:~a" seconds (round (* rest 24))))))
   (let ((wholes-per-minute 15)
         (last-time ZERO-MOMENT)
         (total-time 0)
         (marks '()))
     (make-engraver
      ((process-music engraver)
       (let* ((new-time (ly:context-current-moment context))
              (time-delta (ly:moment-main (ly:moment-sub new-time last-time)))
              (new-wholes-per-minute
               (and=3D> (ly:context-property context 'tempoWholesPerMinute=
 #f)
                      ly:moment-main)))
         (set! total-time
               (+ total-time (* 60 (/ time-delta wholes-per-minute))))
         (set! last-time new-time)
         (when new-wholes-per-minute
           (set! wholes-per-minute new-wholes-per-minute))))
      (acknowledgers
       ((text-mark-interface engraver grob source-engraver)
        (set! marks (cons grob marks))))
      ((process-acknowledged engraver)
       (for-each (lambda (grob)
                   (when (assq-ref (ly:grob-property grob 'details) 'time-mar=
k)
                     (ly:grob-set-property! grob 'text (format-time
                                                        total-time))))
                 marks)
       (set! marks '())))))

\layout {
  \context {
    \Score
    \consists #Custom_engraver!!
  }
}


timeMark =3D \tweak details.time-mark ##t \tweak color "red" \textEndMark=20
"Abracadabra"
%%%%%%%%%%%%%%%%%%%%%%%%%%%%

% le format=20
rhytMic =3D {
   \override Score.MetronomeMark.padding =3D #4
  \clef percussion
  \hide TabNoteHead
  \hide NoteHead
  \override NoteHead.no-ledgers =3D ##t
  \override StaffSymbol.line-count =3D #1
  \numericTimeSignature
  \stemDown
}



structure =3D {

=20
 \tempo 4=3D 60=20
  r1 \bar"||"=20
  r1 \timeMark r1=20
 % \tempo 4=3D120
  \timeMark
  r1=20
  \time 3/4
   R2.
  \timeMark
  \tempo 4 =3D 180
  \time 4/4
  r1 r1
  \timeMark
}


<<
  \new RhythmicStaff
  \with {   } {
   =20
    \new Voice =3D "myRhythm" \relative {
      \rhytMic
     \time 4/4
    \tweak color "red" \textMark "0.0"
   \repeat unfold 8 {  c4  c c c  }

    }
  }
  \new Staff \relative {=20
   R1 R1 R1 R1=20
   R2.=20
   R1 R1 R1
  }
 \new Devnull \structure
>>


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_66335e9279115_3334ef339dc420633-- From MAILER-DAEMON Thu May 2 16:05:25 2024 Return-Path: Date: Thu, 02 May 2024 16:05:25 +0000 From: MartialR via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Timline_pour_musique_de?= =?UTF-8?Q?_film?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6633b9c58789_3334ef339dc426020"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30129 X-Discourse-Topic-Id: 5696 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/timline-pour-musique-de-film/5696 ----==_mimepart_6633b9c58789_3334ef339dc426020 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Je n'arrive pas =C3=A0 mattre une position fixe du timeMark=20 mais =C3=A7a approche un peu plus du mod=C3=A8le.=20 ``` \version "2.24" %%%%%%%%%%%%%%%%%%%%%%%%%%%% %la fonction pour afficheir le temps d'apr=C3=A8s Jean #(define (Custom_engraver!! context) (define (format-time seconds) (let* ((minutes (euclidean-quotient seconds 60)) (rest (euclidean-remainder seconds 60)) (seconds (euclidean-quotient rest 1)) (rest (euclidean-remainder rest 1))) (string-append (if (zero? minutes) "" (format #f "~a:" minutes)) (format #f "~a:~a" seconds (round (* rest 24)))))) (let ((wholes-per-minute 15) (last-time ZERO-MOMENT) (total-time 0) (marks '())) (make-engraver ((process-music engraver) (let* ((new-time (ly:context-current-moment context)) (time-delta (ly:moment-main (ly:moment-sub new-time last-time))) (new-wholes-per-minute (and=3D> (ly:context-property context 'tempoWholesPerMinute #f) ly:moment-main))) (set! total-time (+ total-time (* 60 (/ time-delta wholes-per-minute)))) (set! last-time new-time) (when new-wholes-per-minute (set! wholes-per-minute new-wholes-per-minute)))) (acknowledgers ((text-mark-interface engraver grob source-engraver) (set! marks (cons grob marks)))) ((process-acknowledged engraver) (for-each (lambda (grob) (when (assq-ref (ly:grob-property grob 'details) 'time-mar= k) (ly:grob-set-property! grob 'text (format-time total-time)))) marks) (set! marks '()))))) \layout { \context { \Score \consists #Custom_engraver!! } } timeMark =3D { \tweak X-offset #-1.5 \tweak details.time-mark ##t \tweak color "red" \textMark "Abracadabra" \mark \default } %%%%%%%%%%%%%%%%%%%%%%%%%%%% \header { } \paper { top-margin =3D 20 indent =3D 20 } %mise en forme g=C3=A9n=C3=A9rale \layout { \context { \Score \override MetronomeMark.padding =3D #14 \override RehearsalMark.padding =3D #10 % \override StaffGrouper.staff-staff-spacing.basic-distance =3D #15 } \context { \Voice \override StaffGrouper. staffgroup-staff-spacing.basic-distance =3D #15 } } % le format rhytMicForme =3D { \clef percussion \hide TabNoteHead \hide NoteHead \override NoteHead.no-ledgers =3D ##t \override StaffSymbol.line-count =3D #1 \numericTimeSignature \stemDown } Flute =3D \relative { R1 R1 R1 R1 R2. R1 R1 R1 } structure =3D { \set Score.rehearsalMarkFormatter =3D #format-mark-circle-numbers \tempo 4=3D72 r1 \timeMark \bar"||" r1 \timeMark r1 \timeMark % \tempo 4=3D120 r1 \timeMark \time 3/4 R2. \timeMark \tempo 4 =3D 180 \time 4/4 r1 \timeMark r1 \timeMark } rythmBarre =3D\relative { \rhytMicForme \time 4/4 \tweak color "red" \textMark "0.0" c4 c c c \repeat unfold 2 { c4 c c c } c c c \repeat unfold 4 { c4 c c c } } descriptionText =3D { r1 \textMark\markup\bold\column{ \box"Underwater Scene" \normal-text "X" } r1 r1 r1 r4 r4 \textMark\markup\bold\column{ \box"Landscape" \normal-text "X" } } \score { << \new RhythmicStaff \with { instrumentName =3D \markup\column{ "Hitpoints" "Click Track" } } \new Voice =3D "myRhythm" \rythmBarre \new Lyrics { \descriptionText } \new Devnull{ \structure } \new Staff \with { instrumentName =3D "Flute" } { \Flute } >> \layout { } } ``` --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/timline-pour-musique-de-film/5696/7). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6633b9c58789_3334ef339dc426020 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
MartialR
Mai 2<= /span>

Je n'arrive pas =C3=A0 mattre une position fixe du timeMark
mais =C3=A7a approche un peu plus du mod=C3=A8le.

\version "2.24"
%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%la fonction pour afficheir le temps d'apr=C3=A8s Jean
#(define (Custom_engraver!! context)
   (define (format-time seconds)
     (let* ((minutes (euclidean-quotient seconds 60))
            (rest (euclidean-remainder seconds 60))
            (seconds (euclidean-quotient rest 1))
            (rest (euclidean-remainder rest 1)))
       (string-append (if (zero? minutes) "" (format #f "~a:" minutes))
                      (format #f "~a:~a" seconds (round (* rest 24))))))
   (let ((wholes-per-minute 15)
         (last-time ZERO-MOMENT)
         (total-time 0)
         (marks '()))
     (make-engraver
      ((process-music engraver)
       (let* ((new-time (ly:context-current-moment context))
              (time-delta (ly:moment-main (ly:moment-sub new-time last-time)))
              (new-wholes-per-minute
               (and=3D> (ly:context-property context 'tempoWholesPerMinute=
 #f)
                      ly:moment-main)))
         (set! total-time
               (+ total-time (* 60 (/ time-delta wholes-per-minute))))
         (set! last-time new-time)
         (when new-wholes-per-minute
           (set! wholes-per-minute new-wholes-per-minute))))
      (acknowledgers
       ((text-mark-interface engraver grob source-engraver)
        (set! marks (cons grob marks))))
      ((process-acknowledged engraver)
       (for-each (lambda (grob)
                   (when (assq-ref (ly:grob-property grob 'details) 'time-mar=
k)
                     (ly:grob-set-property! grob 'text (format-time
                                                        total-time))))
                 marks)
       (set! marks '())))))

\layout {
  \context {
    \Score
    \consists #Custom_engraver!!
  }
}


timeMark =3D  {
  \tweak X-offset #-1.5
  \tweak details.time-mark ##t \tweak color "red"
  \textMark
  "Abracadabra" \mark \default
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\header {  }
\paper {
  top-margin =3D 20
  indent =3D  20
}
%mise en forme g=C3=A9n=C3=A9rale
\layout {
  \context {
    \Score
    \override MetronomeMark.padding =3D #14
    \override RehearsalMark.padding =3D #10
    % \override StaffGrouper.staff-staff-spacing.basic-distance =3D #15
  }
  \context {
    \Voice
    \override StaffGrouper.
    staffgroup-staff-spacing.basic-distance =3D #15
  }

}

% le format
rhytMicForme =3D {
  \clef percussion
  \hide TabNoteHead
  \hide NoteHead
  \override NoteHead.no-ledgers =3D ##t
  \override StaffSymbol.line-count =3D #1
  \numericTimeSignature
  \stemDown
}

Flute =3D \relative {
  R1 R1 R1 R1
  R2.
  R1 R1 R1
}

structure =3D {
  \set Score.rehearsalMarkFormatter =3D #format-mark-circle-numbers
  \tempo 4=3D72
  r1 \timeMark
  \bar"||"
  r1 \timeMark
  r1 \timeMark
  % \tempo 4=3D120
  r1  \timeMark
  \time 3/4
  R2. \timeMark
  \tempo 4 =3D 180
  \time 4/4
  r1 \timeMark
  r1 \timeMark
}

rythmBarre =3D\relative {
  \rhytMicForme
  \time 4/4
  \tweak color "red" \textMark "0.0"
  c4 c c c
  \repeat unfold 2 {  c4  c c c  }
  c c  c
  \repeat unfold 4 {  c4  c c c  }
}

descriptionText =3D {
  r1  \textMark\markup\bold\column{ \box"Underwater Scene"  \normal-text "X" }
  r1 r1 r1
  r4 r4
  \textMark\markup\bold\column{ \box"Landscape"  \normal-text "X" }
}

\score {
  <<
    \new RhythmicStaff
    \with { instrumentName =3D \markup\column{ "Hitpoints" "Click Track" }  }
    \new Voice =3D "myRhythm" \rythmBarre
        \new Lyrics { \descriptionText }
        \new  Devnull{ \structure }
    \new Staff \with { instrumentName =3D "Flute" }
    { \Flute }
  >>
  \layout { }
}

Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6633b9c58789_3334ef339dc426020-- From MAILER-DAEMON Thu May 2 18:48:09 2024 Return-Path: Date: Thu, 02 May 2024 18:48:09 +0000 From: Christophe via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Nuances_diff=C3=A9rentes?= =?UTF-8?Q?_entre_conducteur_et_parties_s=C3=A9par=C3=A9es?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6633dfe9327a5_3334ef33a04431570"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30130 X-Discourse-Topic-Id: 5697 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/nuances-differentes-entre-conducteur-et-parties-separees/5697 ----==_mimepart_6633dfe9327a5_3334ef33a04431570 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour, Gr=C3=A2ce =C3=A0 votre aide j'=C3=A9tais arriv=C3=A9 =C3=A0 noter les dynami= ques souhait=C3=A9es sur le conducteur : ![conducteur|660x242](upload://ysSTaFRUD2LUzyMLnTiyJlgEdWL.jpeg) Mais quand j'=C3=A9dite les parties s=C3=A9par=C3=A9es, je ne les ai plus : ![parties s=C3=A9par=C3=A9es|424x216](upload://2Hx5mmSI7hHjAFhfQ0xsSipeXjI.jp= eg) Le code est le m=C3=AAme : \version "2.24.1" \header { title =3D "cors" } \paper { #(set-paper-size "a4") } global =3D { \key c \major \numericTimeSignature \time 3/4 } scoreAHornFI =3D \relative c'' { \global % \transposition f % En avant la musique ! r4 r c~\p\< \after 8 \mp \after 8 \> \after 2. \! c2. } scoreAHornFII =3D \relative c'' { \global \clef F % \transposition f % En avant la musique ! r4 <>\p\< \after 4.. \mp \after 4.. \> g,2~ g2 r4\! } scoreAHornFIPart =3D \new Staff \with { instrumentName =3D "Cor en fa I" midiInstrument =3D "french horn" } \scoreAHornFI scoreAHornFIIPart =3D \new Staff \with { instrumentName =3D "Cor en fa II" midiInstrument =3D "french horn" } \scoreAHornFII \score { << \scoreAHornFIPart \scoreAHornFIIPart >> \layout { } \midi { \tempo 4=3D100 } } % 2 cors \bookpart { \header {subtitle =3D "2 cors"} \paper { % system-separator-markup =3D ##f system-system-spacing.basic-distance =3D #25=20 } \score {\new StaffGroup { \removeWithTag conducteur << {\scoreAHornFIPart} {\scoreAHornFIIPart} >>= } \layout {} \midi {\tempo 4=3D100}} } Sauriez-vous m'expliquer ce qui coince ? Merci pour votre analyse. Christophe --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/nuances-differentes-entre-conducteur-et-parties-separees/5697/1). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6633dfe9327a5_3334ef33a04431570 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Christophe Christophe
Mai 2<= /span>

Bonjour,
Gr=C3=A2ce =C3=A0 votre aide j'=C3=A9tais arriv=C3=A9 =C3=A0 noter les dynami= ques souhait=C3=A9es sur le conducteur :
3D"conducteur"
Mais quand j'=C3=A9dite les parties s=C3=A9par=C3=A9es, je ne les ai plus : 3D"parties

Le code est le m=C3=AAme :
\version "2.24.1"

\header {
title =3D "cors"
}

\paper {
#(set-paper-size "a4")
}

global =3D {
\key c \major
\numericTimeSignature
\time 3/4
}

scoreAHornFI =3D \relative c'' {
\global
% \transposition f
% En avant la musique !
r4 r c~\p<
\after 8 \mp \after 8 > \after 2. ! c2.
}

scoreAHornFII =3D \relative c'' {
\global
\clef F
% \transposition f
% En avant la musique !
r4 <>\p< \after 4.. \mp \after 4.. > g,2~
g2 r4!
}

scoreAHornFIPart =3D \new Staff \with {=
instrumentName =3D "Cor en fa I"
midiInstrument =3D "french horn"
} \scoreAHornFI

scoreAHornFIIPart =3D \new Staff \with = {
instrumentName =3D "Cor en fa II"
midiInstrument =3D "french horn"
} \scoreAHornFII

\score {
<<
\scoreAHornFIPart
\scoreAHornFIIPart

\layout { }
\midi {
\tempo 4=3D100
}
}

% 2 cors
\bookpart {
\header {subtitle =3D "2 cors"}
\paper {
% system-separator-markup =3D ##f
system-system-spacing.basic-distance =3D #25
}
\score {\new StaffGroup {
\removeWithTag conducteur << {\scoreAHornFIPart} {\scoreAHornFIIPart} &= gt;> }
\layout {}
\midi {\tempo 4=3D100}}
}

Sauriez-vous m'expliquer ce qui coince = ? Merci pour votre analyse.
Christophe


Pour poster dans ce sujet, visitez la page du su= jet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6633dfe9327a5_3334ef33a04431570-- From MAILER-DAEMON Thu May 2 19:38:23 2024 Return-Path: Date: Thu, 02 May 2024 19:38:23 +0000 From: xavier via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Nuances_diff=C3=A9rentes?= =?UTF-8?Q?_entre_conducteur_et_parties_s=C3=A9par=C3=A9es?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6633ebaf6f990_3334ef33a2c437044"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30131 X-Discourse-Topic-Id: 5697 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/nuances-differentes-entre-conducteur-et-parties-separees/5697 ----==_mimepart_6633ebaf6f990_3334ef33a2c437044 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour, Tout d'abord c'est peut-=C3=AAtre une erreur de copier-coller ou un probl=C3= =A8me de Discourse mais il manque plusieurs backslashes `\` dans le code, en = particulier au niveau des soufflets apr=C3=A8s les `\after`. Ensuite sur les images post=C3=A9es on voit que les soufflets sont toujours l= =C3=A0 mais comme la partition est plus condens=C3=A9e (espace horizontal moi= ns important) il sont comprim=C3=A9s et ressemblent plus =C3=A0 des chevrons. Plusieurs possibilit=C3=A9s : attendre de voir la partition finale ou [change= l'espacement horizontal](https://lilypond.org/doc/v2.25/Documentation/notati= on/horizontal-spacing.fr.html). On peut aussi ajouter `\override Hairpin.minimum-length =3D #4` pour obliger = les soufflets =C3=A0 avoir une longueur minimale (=C3=A0 noter qu'il y a 2 tr= =C3=A8s vieux bugs concernant la longueur minimale des soufflets: [#1314](htt= ps://gitlab.com/lilypond/lilypond/-/issues/1314) et [#2207](https://gitlab.co= m/lilypond/lilypond/-/issues/2207)). Cordialement, Xavier --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/nuances-differentes-entre-conducteur-et-parties-separees/5697/2). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6633ebaf6f990_3334ef33a2c437044 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
xavier xavier
Mai 2<= /span>

Bonjour,

Tout d'abord c'est peut-=C3=AAtre une e= rreur de copier-coller ou un probl=C3=A8me de Discourse mais il manque plusie= urs backslashes \ dans le code, en particulier au niveau des soufflets apr= =C3=A8s les \after.

Ensuite sur les images post=C3=A9es on = voit que les soufflets sont toujours l=C3=A0 mais comme la partition est plus= condens=C3=A9e (espace horizontal moins important) il sont comprim=C3=A9s et= ressemblent plus =C3=A0 des chevrons.

Plusieurs possibilit=C3=A9s : attendre = de voir la partition finale ou change l'= espacement horizontal.
On peut aussi ajouter \override Hairpin.minimum-length =3D #4 pour obliger l= es soufflets =C3=A0 avoir une longueur minimale (=C3=A0 noter qu'il y a 2 tr= =C3=A8s vieux bugs concernant la longueur minimale des soufflets: #131= 4 et #2207).

Cordialement,
Xavier


Pour poster dans ce sujet, visitez la page du su= jet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6633ebaf6f990_3334ef33a2c437044-- From MAILER-DAEMON Thu May 2 20:04:47 2024 Return-Path: Date: Thu, 02 May 2024 20:04:47 +0000 From: Christophe via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Nuances_diff=C3=A9rentes?= =?UTF-8?Q?_entre_conducteur_et_parties_s=C3=A9par=C3=A9es?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6633f1df4fef5_3334ef339f0442577"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30132 X-Discourse-Topic-Id: 5697 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/nuances-differentes-entre-conducteur-et-parties-separees/5697 ----==_mimepart_6633f1df4fef5_3334ef339f0442577 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Merci Xavier, je r=C3=A9tablis les soufflets avec `\override Hairpin.minimum-length =3D #8. Merci. Dans le m=C3=AAme ordre d'id=C3=A9e, sur le conducteur la harpe appara=C3=AEt= ainsi : ![harpe C|283x298](upload://vJvfg8mNLTcB0nBN8Xhax6DMZU5.jpeg) Et pour la partie s=C3=A9par=C3=A9e : ![harpe Seule|239x245](upload://6yUMtwaHush9wXhfhd2nhzi481v.jpeg) Est-ce un probl=C3=A8me d'=C3=A9cartement des 2 mains de la harpe dans le con= ducteur qui pose probl=C3=A8me (avec le r=C3=A9glage des courbes de B=C3=A9zi= er qui fige les liaisons) ?=20 Merci pour votre lecture et vos conseils. --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/nuances-differentes-entre-conducteur-et-parties-separees/5697/3). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6633f1df4fef5_3334ef339f0442577 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Christophe Christophe
Mai 2<= /span>

Merci Xavier,
je r=C3=A9tablis les soufflets avec `\override Hairpin.minimum-length =3D #8.
Merci.
Dans le m=C3=AAme ordre d'id=C3=A9e, sur le conducteur la harpe appara=C3=AEt= ainsi :
3D"harpe
Et pour la partie s=C3=A9par=C3=A9e :
3D"harpe
Est-ce un probl=C3=A8me d'=C3=A9cartement des 2 mains de la harpe dans le con= ducteur qui pose probl=C3=A8me (avec le r=C3=A9glage des courbes de B=C3=A9zi= er qui fige les liaisons) ?
Merci pour votre lecture et vos conseils.


Pour poster dans ce sujet, visitez la page du su= jet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6633f1df4fef5_3334ef339f0442577-- From MAILER-DAEMON Thu May 2 20:57:51 2024 Return-Path: Date: Thu, 02 May 2024 20:57:51 +0000 From: Christophe via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Nuances_diff=C3=A9rentes?= =?UTF-8?Q?_entre_conducteur_et_parties_s=C3=A9par=C3=A9es?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6633fe4f4f64d_3334ef33a1844805a"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30133 X-Discourse-Topic-Id: 5697 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/nuances-differentes-entre-conducteur-et-parties-separees/5697 ----==_mimepart_6633fe4f4f64d_3334ef33a1844805a Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Je ne comprends pas pourquoi l'=C3=A9cart des port=C3=A9es de harpe est plus = grand sur un seul syst=C3=A8me et qu'il revient au m=C3=AAme =C3=A9cartement = dans les parties s=C3=A9par=C3=A9es. \version "2.24.1" \header { title =3D "harpe" } \paper { #(set-paper-size "a4") } global =3D { \key c \major \numericTimeSignature \time 3/4 } upper =3D \relative c'' { \global % En avant la musique ! =20 =20 << \new Voice =3D "premi=C3=A8re" \relative { \voiceOne 2 ^\markup {\bold {au Mouvt}} \arpeggio s4 =20 } \new Voice =3D "seconde" \relative { \voiceTwo \hideNotes=20 \change Staff =3D "lower" s4 \voiceOne=20 \shape #'((-5 . -4)(-2 . 1)(-3 . 2.5)(1 . 0)) Slur=20 f8 ( c'8=20 \change Staff =3D "upper"=20 \unHideNotes \oneVoice=20 % \stemUp \stemDown aes'4 ) } >> R2. << \new Voice =3D "premi=C3=A8re" \relative { \voiceOne 4 \arpeggio s4 s8 s8 } \new Voice =3D "seconde" \relative { \voiceTwo \hideNotes=20 \change Staff =3D "lower" s4 \voiceOne=20 \shape #'((-5.8 . -17.2)(-4 . 3.5)(0 . 1)(0 . -0.3)) Slur=20 f8 ( c'8=20 \change Staff =3D "upper"=20 \unHideNotes \oneVoice=20 % \stemUp g'8[ aes] ) } >> =20 R2. << \new Voice =3D "premi=C3=A8re" \relative { \voiceOne 4 \arpeggio s4 s4 } \new Voice =3D "seconde" \relative { \voiceTwo \hideNotes=20 \change Staff =3D "lower" s8 \voiceOne=20 \shape #'((-2.5 . -10.5)(-2 . 1)(-2 . 2)(-3 . 0)) Slur=20 \override DynamicLineSpanner.staff-padding =3D 4 g'8 \< ( d'!8 f! b d \change Staff =3D "upper"=20 \unHideNotes \oneVoice=20 % \stemUp % \stemDown r8 8 ~4 r) \! } >> =20 R2. *2 \hideNotes \change Staff =3D "lower" s8=20 \shape #'((-0.1 . -5.)(0 . 1)(-0.8 . 3.5)(0 . -2)) Slur % \override DynamicLineSpanner.staff-padding =3D 4.5 \voiceOne a,,^"L.V."\>( e' b' c e \change Staff =3D "upper" \unHideNotes \oneVoice b'8 c^\markup {\bold {Tr=C3=A8s lent}} e b' c4)\! =20 R2. 2. \fermata \bar".." | } lower =3D \relative c' { \global % En avant la musique ! =20 =20 r8 \p f,8 [ \change Staff =3D "upper" c' g'8] s4 \change Staff =3D "lower" R2. r8 f, [ \change Staff =3D "upper" c' f8] s4 \change Staff =3D "lower" R2. r8 g,, d'! f! b d s2.=20 =20 R2. *2 r8 \shiftOn a,, e' b' c e=20 s2. R2. *2 \bar".." | =20 } \score { \new PianoStaff \with { instrumentName =3D "Harpe" } << \new Staff =3D "upper" \with { midiInstrument =3D "orchestral harp" } \upper \new Staff =3D "lower" \with { midiInstrument =3D "orchestral harp" } { \clef bass \lower } >> \layout { } \midi { \tempo 4=3D100 } } Dans ce code, les deux port=C3=A9es du haut sont plus =C3=A9cart=C3=A9es que = celles du bas. Les liaisons ne sont plus ajust=C3=A9es. Comment corriger cet =C3=A9cart pour que les courbes de B=C3=A9zier se retrou= vent =C3=A0 l'identique dans les parties s=C3=A9par=C3=A9es ? Merci d'avance pour vos corrections. Cordialement. Christophe --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/nuances-differentes-entre-conducteur-et-parties-separees/5697/4). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6633fe4f4f64d_3334ef33a1844805a Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Christophe Christophe
Mai 2<= /span>

Je ne comprends pas pourquoi l'=C3=A9cart des port=C3=A9es de harpe es= t plus grand sur un seul syst=C3=A8me et qu'il revient au m=C3=AAme =C3=A9car= tement dans les parties s=C3=A9par=C3=A9es.
\version "2.24.1"

\header {
title =3D "harpe"
}

\paper {
#(set-paper-size "a4")
}

global =3D {
\key c \major
\numericTimeSignature
\time 3/4
}

upper =3D \relative c'' {
\global
% En avant la musique !

<<
\new Voice =3D "premi=C3=A8re"
\relative {
\voiceOne
<g' aes c! g'>2 ^\markup {\bold {au Mouvt}} \arpeggio s4
}
\new Voice =3D "seconde"
\relative {
\voiceTwo
\hideNotes
\change Staff =3D "lower" s4
\voiceOne
\shape #'((-5 . -4)(-2 . 1)(-3 . 2.5)(1 . 0)) Slur
f8 ( c'8
\change Staff =3D "upper"
\unHideNotes
\oneVoice
% \stemUp
\stemDown
aes'4 )
}

R2.
<<
\new Voice =3D "premi=C3=A8re"
\relative {
\voiceOne
<g' aes c! g'>4 \arpeggio s4 s8 s8
}
\new Voice =3D "seconde"
\relative {
\voiceTwo
\hideNotes
\change Staff =3D "lower" s4
\voiceOne
\shape #'((-5.8 . -17.2)(-4 . 3.5)(0 . 1)(0 . -0.3)) Slur
f8 ( c'8
\change Staff =3D "upper"
\unHideNotes
\oneVoice
% \stemUp
g'8[ aes] )
}

R2.
<<
\new Voice =3D "premi=C3=A8re"
\relative {
\voiceOne
<bes d! a'>4 \arpeggio s4 s4
}
\new Voice =3D "seconde"
\relative {
\voiceTwo
\hideNotes
\change Staff =3D "lower" s8
\voiceOne
\shape #'((-2.5 . -10.5)(-2 . 1)(-2 . 2)(-3 . 0)) Slur
\override DynamicLineSpanner.staff-padding =3D 4
g'8 < ( d'!8 f! b d
\change Staff =3D "upper"
\unHideNotes
\oneVoice
% \stemUp
% \stemDown
r8 <bes, d>8 ~4 r) !
}

R2. *2
\hideNotes \change Staff =3D "lower" s8
\shape #'((-0.1 . -5.)(0 . 1)(-0.8 . 3.5)(0 . -2)) Slur
% \override DynamicLineSpanner.staff-padding =3D 4.5
\voiceOne a,,^"L.V.">( e' b' c e \change Staff =3D "upper" \unHideNotes
\oneVoice b'8 c^\markup {\bold {Tr=C3=A8s lent}} e b' c4)!

R2.
<c \flageolet e \flageolet>2. \fermata
\bar".." |
}

lower =3D \relative c' {
\global
% En avant la musique !

r8 \p f,8 [ \change Staff =3D "upper" c= ' g'8] s4
\change Staff =3D "lower"
R2.
r8 f, [ \change Staff =3D "upper" c' f8] s4
\change Staff =3D "lower"
R2.
r8 g,, d'! f! b d
s2.

R2. *2
r8 \shiftOn a,, e' b' c e
s2.
R2. *2
\bar".." |

}

\score {
\new PianoStaff \with {
instrumentName =3D "Harpe"
} <<
\new Staff =3D "upper" \with {
midiInstrument =3D "orchestral harp"
} \upper
\new Staff =3D "lower" \with {
midiInstrument =3D "orchestral harp"
} { \clef bass \lower }

\layout { }
\midi {
\tempo 4=3D100
}
}

Dans ce code, les deux port=C3=A9es du = haut sont plus =C3=A9cart=C3=A9es que celles du bas. Les liaisons ne sont plu= s ajust=C3=A9es.
Comment corriger cet =C3=A9cart pour que les courbes de B=C3=A9zier se retrou= vent =C3=A0 l'identique dans les parties s=C3=A9par=C3=A9es ?
Merci d'avance pour vos corrections.
Cordialement.
Christophe


Pour poster dans ce sujet, visitez la page du su= jet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6633fe4f4f64d_3334ef33a1844805a-- From MAILER-DAEMON Thu May 2 21:12:13 2024 Return-Path: Date: Thu, 02 May 2024 21:12:13 +0000 From: Christophe via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_663401ad9344f_3334ef339dc4535c9"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30134 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_663401ad9344f_3334ef339dc4535c9 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour, Pour les parties s=C3=A9par=C3=A9es je note des citations d'autres instrument= s avant l'entr=C3=A9e d'un musicien. Avec \new CueVoice, =C3=A7a marche tr=C3=A8s bien. Mais je n'ai besoin de les= avoir dans le conducteur. La doc pr=C3=A9cise qu'avec \killCues, il est possible de les supprimer. Mais= o=C3=B9 faut-il placer cette commande. Je n'y suis pas arriv=C3=A9, ni dans = la partie principale ni dans les parties s=C3=A9par=C3=A9es. Quelle est la bo= nne syntaxe ? Merci pour votre aide =C3=A0 la compr=C3=A9hension de cette commande. Cordialement. Christophe --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/1). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_663401ad9344f_3334ef339dc4535c9 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Christophe Christophe
Mai 2<= /span>

Bonjour,
Pour les parties s=C3=A9par=C3=A9es je note des citations d'autres instrument= s avant l'entr=C3=A9e d'un musicien.
Avec \new CueVoice, =C3=A7a marche tr=C3=A8s bien. Mais je n'ai besoin de les= avoir dans le conducteur.
La doc pr=C3=A9cise qu'avec \killCues, il est possible de les supprimer. Mais= o=C3=B9 faut-il placer cette commande. Je n'y suis pas arriv=C3=A9, ni dans = la partie principale ni dans les parties s=C3=A9par=C3=A9es. Quelle est la bo= nne syntaxe ?
Merci pour votre aide =C3=A0 la compr=C3=A9hension de cette commande.
Cordialement.
Christophe


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_663401ad9344f_3334ef339dc4535c9-- From MAILER-DAEMON Fri May 3 08:05:38 2024 Return-Path: Date: Fri, 03 May 2024 08:05:38 +0000 From: =?UTF-8?B?RnLDqWTDqXJpYyBNb2luYXJkIHZpYSBMaWx5UG9uZA==?= To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_66349ad280021_3334ef33a04459615"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30135 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_66349ad280021_3334ef33a04459615 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour, =C3=80 relire https://lilypond.org/doc/v2.25/Documentation/notation/formattin= g-cue-notes, il me semble que `\killCues` ne s'occupe que des r=C3=A9pliques = ins=C3=A9r=C3=A9es avec `\cueDuring`. Pour celles ins=C3=A9r=C3=A9s avec une = `CueVoice`, je crois qu'il faut passer par l'utilisation des tags. Cordialement, Fr=C3=A9d=C3=A9ric --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/2). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_66349ad280021_3334ef33a04459615 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Fr=C3=A9d=C3=A9ric Mo= inard Frederic_Moinard1
Mai 3<= /span>

Bonjour,

=C3=80 relire https://lilypond.org/doc/v2.25/Documentation/notation/formatting-cue-no= tes, il me semble que \killCues ne s'occupe que des r=C3=A9pliques ins= =C3=A9r=C3=A9es avec \cueDuring. Pour celles ins=C3=A9r=C3=A9s avec une CueVoice, je crois qu'il faut passer par l'utilisation des tags.

Cordialement,
Fr=C3=A9d=C3=A9ric


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_66349ad280021_3334ef33a04459615-- From MAILER-DAEMON Fri May 3 08:32:46 2024 Return-Path: Date: Fri, 03 May 2024 08:32:46 +0000 From: =?UTF-8?B?RnLDqWTDqXJpYyBNb2luYXJkIHZpYSBMaWx5UG9uZA==?= To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_fusion_de_parties_dans_un?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6634a12de54fc_3334ef339dc4651d"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30136 X-Discourse-Topic-Id: 5695 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/fusion-de-parties-dans-un-conducteur/5695 ----==_mimepart_6634a12de54fc_3334ef339dc4651d Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour, Le m=C3=AAme avec \partCombine : ``` \version "2.24" structure_A =3D { \key e \major \tempo 4 =3D 120 \time 4/4 s1 * 13 \bar "||" \time 3/2 \tempo 4 =3D 122 s1. * 4 \time 2/2 s2 * 2 \bar "|." } cor_a =3D \relative { R1 * 13 | % 3/2 c''4. e,8 e2. e4 | g4. d8 d2 d4 e | f4. a,8 a2 a4 d | e4. a,8 a2 a4 b | % 2/2 c2. c4 | b4-> r r2 | } cor_b =3D \relative { R1 * 13 | % 3/2 e'4. c8 c2. c4 | b4. b8 b2 g4 g4 | a4. f8 f2 f4 f | a4. e8 e2 e4 e4 | % 2/2 f2. f4 | f4-> r r2 | } cor_c =3D \relative { R1 * 13 | % 3/2 g''4. e8 e2. e4 | d4. d8 d2 b4 c4 | c4. a8 a2 a4 a | c4. a8 a2 a4 b4 | % 2/2 c2. c4 | gis4-> r r2 | } cor_d =3D \relative { R1 * 13 | % 3/2 g'4. g8 g2. g4 | g4. g8 g2 d4 e | f4. f8 f2 d4 d | e4. e8 e2 e4 e | % 2/2 f2. f4 | d4-> r r2 | } \score { << \new Devnull \structure_A=20 \new StaffGroup \with { instrumentName =3D "F Horns" shortInstrumentName =3D #"Hn" } << \new Staff \with { instrumentName =3D \markup \center-column { "1" "2"}=20 shortInstrumentName =3D \markup \center-column { "1" "2"} \consists Merge_rests_engraver } { \compressEmptyMeasures \partCombine \cor_a \cor_b } \new Staff \with { instrumentName =3D \markup \center-column { "1" "2"}=20 shortInstrumentName =3D \markup \center-column { "1" "2"} } { \partCombine \cor_c \cor_d } >> >> } ``` On peut ajouter un`\partCombineApart` au d=C3=A9but du corA pour reproduire l= e visuel pr=C3=A9c=C3=A9dent. Je me sers tr=C3=A8s souvent de \partCombine pour =C3=A9diter les partitions = des pupitres. =20 Cordialement, Fr=C3=A9d=C3=A9ric --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/fusion-de-parties-dans-un-conducteur/5695/6). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6634a12de54fc_3334ef339dc4651d Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Fr=C3=A9d=C3=A9ric Mo= inard Frederic_Moinard1
Mai 3<= /span>

Bonjour,

Le m=C3=AAme avec \partCombine :

\version "2.24"
structure_A =3D {
   \key e \major
   \tempo 4 =3D 120
   \time 4/4
   s1 * 13 \bar "||"
   \time 3/2
   \tempo 4 =3D 122
   s1. * 4
   \time 2/2
   s2 * 2
   \bar "|."
}

cor_a =3D \relative {
   R1 * 13 |
   % 3/2
   c''4. e,8 e2. e4 |
   g4. d8 d2 d4 e |
   f4. a,8 a2 a4 d |
   e4. a,8 a2 a4 b |
   % 2/2
   c2. c4 |
   b4-> r r2 |
}

cor_b =3D \relative {
   R1 * 13 |
   % 3/2
   e'4. c8 c2. c4 |
   b4. b8 b2 g4 g4 |
   a4. f8 f2 f4 f |
   a4. e8 e2 e4 e4 |
   % 2/2
   f2. f4 |
   f4-> r r2 |
}

cor_c =3D \relative {
   R1 * 13 |
   % 3/2
   g''4. e8 e2. e4 |
   d4. d8 d2 b4 c4 |
   c4. a8 a2 a4 a |
   c4. a8 a2 a4 b4 |
   % 2/2
   c2. c4 |
   gis4-> r r2 |
}

cor_d =3D \relative {
   R1 * 13 |
   % 3/2
   g'4. g8 g2. g4 |
   g4. g8 g2 d4 e |
   f4. f8 f2 d4 d |
   e4. e8 e2 e4 e |
   % 2/2
   f2. f4 |
   d4-> r r2 |
}

\score {
   <<
      \new Devnull \structure_A=20
      \new StaffGroup \with {
         instrumentName =3D "F Horns"
         shortInstrumentName =3D #"Hn"
      }
      <<
         \new Staff \with {
            instrumentName =3D \markup \center-column { "1" "2"}=20
            shortInstrumentName =3D \markup \center-column { "1" "2"}
            \consists Merge_rests_engraver
         }
         { \compressEmptyMeasures \partCombine \cor_a \cor_b }

         \new Staff \with {
            instrumentName =3D \markup \center-column { "1" "2"}=20
            shortInstrumentName =3D \markup \center-column { "1" "2"}
         }
         { \partCombine  \cor_c  \cor_d  }
      >>
   >>
}

On peut ajouter un\partCombineApart au= d=C3=A9but du corA pour reproduire le visuel pr=C3=A9c=C3=A9dent.

Je me sers tr=C3=A8s souvent de \partCo= mbine pour =C3=A9diter les partitions des pupitres.

Cordialement,
Fr=C3=A9d=C3=A9ric


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6634a12de54fc_3334ef339dc4651d-- From MAILER-DAEMON Fri May 3 09:40:55 2024 Return-Path: Date: Fri, 03 May 2024 09:40:55 +0000 From: MartialR via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_fusion_de_parties_dans_un?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6634b1273900b_3334ef33a0447068d"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30137 X-Discourse-Topic-Id: 5695 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/fusion-de-parties-dans-un-conducteur/5695 ----==_mimepart_6634b1273900b_3334ef33a0447068d Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour,=20 effectivement, =C3=A7a revient =C3=A0=20 ``` <<{ VxH } \\ { \VxB }>> ``` c'est simple, j'avais du me m=C3=A9langer les pattes au d=C3=A9but .=20 Merci de l'exemple --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/fusion-de-parties-dans-un-conducteur/5695/7). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6634b1273900b_3334ef33a0447068d Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
MartialR
Mai 3<= /span>

Bonjour,
effectivement, =C3=A7a revient =C3=A0

<<{  VxH } \\ {  \VxB }&=
gt;>

c'est simple, j'avais du me m=C3=A9lang= er les pattes au d=C3=A9but .
Merci de l'exemple


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6634b1273900b_3334ef33a0447068d-- From MAILER-DAEMON Fri May 3 09:51:05 2024 Return-Path: Date: Fri, 03 May 2024 09:51:05 +0000 From: Olivier Charade via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_fusion_de_parties_dans_un?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6634b388dd828_3334ef33a1847612a"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30138 X-Discourse-Topic-Id: 5695 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/fusion-de-parties-dans-un-conducteur/5695 ----==_mimepart_6634b388dd828_3334ef33a1847612a Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bravo pour le partCombine. Maintenant que c'est =C3=A9crit, =C3=A7a para=C3= =AEt =C3=A9vident. Je n'ai pas compris ce qu'est le "visuel pr=C3=A9c=C3=A9dent". Quand je joue = avec partCombineApart j'obtiens des d=C3=A9calages horizontaux qui ne sont s= =C3=BBrement pas l'effet cherch=C3=A9. Ce qui est chouette c'est que le partCombine fusionne aussi les nuances. J'avais commenc=C3=A9 =C3=A0 chercher =C3=A0 masquer les nuances des cors 2 e= t 4 dans ma premi=C3=A8re version, mais je n'ai pas trouv=C3=A9 la propri=C3= =A9t=C3=A9 de DynamicText =C3=A0 modifier pour arrver =C3=A0 ce r=C3=A9sultat= . Quelqu'un peut me donner la solution, que j'apprenne encore quelque chose? --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/fusion-de-parties-dans-un-conducteur/5695/8). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6634b388dd828_3334ef33a1847612a Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Olivier Charade olicha
Mai 3<= /span>

Bravo pour le partCombine. Maintenant que c'est =C3=A9crit, =C3=A7a pa= ra=C3=AEt =C3=A9vident.
Je n'ai pas compris ce qu'est le "visuel pr=C3=A9c=C3=A9dent". Quand je joue = avec partCombineApart j'obtiens des d=C3=A9calages horizontaux qui ne sont s= =C3=BBrement pas l'effet cherch=C3=A9.

Ce qui est chouette c'est que le partCo= mbine fusionne aussi les nuances.
J'avais commenc=C3=A9 =C3=A0 chercher =C3=A0 masquer les nuances des cors 2 e= t 4 dans ma premi=C3=A8re version, mais je n'ai pas trouv=C3=A9 la propri=C3= =A9t=C3=A9 de DynamicText =C3=A0 modifier pour arrver =C3=A0 ce r=C3=A9sultat= . Quelqu'un peut me donner la solution, que j'apprenne encore quelque chose?<= /p>


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6634b388dd828_3334ef33a1847612a-- From MAILER-DAEMON Fri May 3 10:33:04 2024 Return-Path: Date: Fri, 03 May 2024 10:33:04 +0000 From: Christophe via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6634bd603c80b_3334ef339dc4816ec"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30139 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_6634bd603c80b_3334ef339dc4816ec Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour et merci Fr=C3=A9d=C3=A9ric. La doc n'est pas tr=C3=A8s claire (pour moi) : La commande `killCues` permet de supprimer les notes d=E2=80=99une citation. = Ceci est utile lorsque cette citation n=E2=80=99est pas imprim=C3=A9e dans le= conducteur entre autres. `killCues` supprimera les notes et autres =C3=A9v= =C3=A9nements pris en charge par `\cueDuring`. Pour les autres annotations te= lles que changement de clef ou instrument concern=C3=A9, faites appel =C3=A0 = des balises =E2=80=93 see section [Utilisation de balises](https://lilypond.o= rg/doc/v2.25/Documentation/notation/using-tags) =C3=A0 ce sujet. Je ne suis pas habitu=C3=A9 =C3=A0 l'utilisation des tags. Quelle va =C3=AAtr= e la bonne syntaxe ... ? Je vais t=C3=A2tonner. --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/3). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6634bd603c80b_3334ef339dc4816ec Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Christophe Christophe
Mai 3<= /span>

Bonjour et merci Fr=C3=A9d=C3=A9ric.
La doc n'est pas tr=C3=A8s claire (pour moi) :

La commande killCues permet de supprim= er les notes d=E2=80=99une citation. Ceci est utile lorsque cette citation n= =E2=80=99est pas imprim=C3=A9e dans le conducteur entre autres. killCues s= upprimera les notes et autres =C3=A9v=C3=A9nements pris en charge par \cueDuring. Pour les autres annotations telles que changement de clef ou instrument= concern=C3=A9, faites appel =C3=A0 des balises =E2=80=93 see section Utilisation de balises =C3=A0 ce sujet.

Je ne suis pas habitu=C3=A9 =C3=A0 l'ut= ilisation des tags. Quelle va =C3=AAtre la bonne syntaxe ... ?
Je vais t=C3=A2tonner.


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6634bd603c80b_3334ef339dc4816ec-- From MAILER-DAEMON Fri May 3 10:38:40 2024 Return-Path: Date: Fri, 03 May 2024 10:38:40 +0000 From: Christophe via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6634beb066d18_3334ef339dc48711c"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30140 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_6634beb066d18_3334ef339dc48711c Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Il y a tellement de balises que je ne sais m=C3=AAme pas laquelle convient. Les citations pr=C3=A9sentes dans les parties s=C3=A9par=C3=A9es mais pas dan= s le conducteur. Merci pour vos conseils. --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/4). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6634beb066d18_3334ef339dc48711c Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Christophe Christophe
Mai 3<= /span>

Il y a tellement de balises que je ne sais m=C3=AAme pas laquelle conv= ient.
Les citations pr=C3=A9sentes dans les parties s=C3=A9par=C3=A9es mais pas dan= s le conducteur.
Merci pour vos conseils.


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6634beb066d18_3334ef339dc48711c-- From MAILER-DAEMON Fri May 3 11:07:17 2024 Return-Path: Date: Fri, 03 May 2024 11:07:17 +0000 From: Christophe via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6634c56592700_3334ef339dc4926e9"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30141 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_6634c56592700_3334ef339dc4926e9 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Je suis compl=C3=A8tement coinc=C3=A9. Je ne comprends quelle balise utiliser= .=20 Pour moi la documentation est plus math=C3=A9matique que musicale, en tout ca= s pour cet aspect. Merci pour votre aide. --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/5). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6634c56592700_3334ef339dc4926e9 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Christophe Christophe
Mai 3<= /span>

Je suis compl=C3=A8tement coinc=C3=A9. Je ne comprends quelle balise u= tiliser.
Pour moi la documentation est plus math=C3=A9matique que musicale, en tout ca= s pour cet aspect.
Merci pour votre aide.


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6634c56592700_3334ef339dc4926e9-- From MAILER-DAEMON Fri May 3 11:08:48 2024 Return-Path: Date: Fri, 03 May 2024 11:08:48 +0000 From: Olivier Charade via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Timline_pour_musique_de?= =?UTF-8?Q?_film?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6634c5bfd9ba9_3334ef33a2c498045"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30142 X-Discourse-Topic-Id: 5696 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/timline-pour-musique-de-film/5696 ----==_mimepart_6634c5bfd9ba9_3334ef33a2c498045 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 C'est vrai qu'on approche. Au niveau style, j'ai finalement opt=C3=A9 pour laisser les t=C3=AAtes de not= es avec drumStyleTable =3D #percussion-style et des mesures du genre {\timeMark cab4 4 4 4} que je multiplie avec unfold sauf si il faut une description de sc=C3=A8ne de= dans J'ai trouv=C3=A9 comment afficher mon time code en commen=C3=A7ant par l'heur= e. Il ne me manque plus que trouver comment forcer la valeur du premier moment e= t la reforcer en cours de route. L=C3=A0, =C3=A7a me d=C3=A9passe totalement. --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/timline-pour-musique-de-film/5696/8). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6634c5bfd9ba9_3334ef33a2c498045 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Olivier Charade olicha
Mai 3<= /span>

C'est vrai qu'on approche.
Au niveau style, j'ai finalement opt=C3=A9 pour laisser les t=C3=AAtes de not= es avec
drumStyleTable =3D #percussion-style
et des mesures du genre
{\timeMark cab4 4 4 4}
que je multiplie avec unfold sauf si il faut une description de sc=C3=A8ne de= dans

J'ai trouv=C3=A9 comment afficher mon t= ime code en commen=C3=A7ant par l'heure.

Il ne me manque plus que trouver commen= t forcer la valeur du premier moment et la reforcer en cours de route. L=C3= =A0, =C3=A7a me d=C3=A9passe totalement.


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6634c5bfd9ba9_3334ef33a2c498045-- From MAILER-DAEMON Fri May 3 11:11:10 2024 Return-Path: Date: Fri, 03 May 2024 11:11:10 +0000 From: xavier via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6634c64dd5ab4_3334ef339f05035e6"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30143 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_6634c64dd5ab4_3334ef339f05035e6 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour, Une autre possibilit=C3=A9 est d'utiliser une variable s=C3=A9par=C3=A9e avec= des silences invisibles et les citations. Si tu fournis un exemple minimal de code montrant ce que tu utilises on peut = t'indiquer comment le modifier avec les tags et/ou une variable s=C3=A9par=C3= =A9e. Mais le plus simple est probablement d'utiliser `\cueDuring` comme indiqu=C3= =A9 dans la documentation, qui a l'avantage d'avoir presque tout automatis=C3= =A9. Cordialement, Xavier --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/6). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6634c64dd5ab4_3334ef339f05035e6 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
xavier xavier
Mai 3<= /span>

Bonjour,

Une autre possibilit=C3=A9 est d'utilis= er une variable s=C3=A9par=C3=A9e avec des silences invisibles et les citatio= ns.

Si tu fournis un exemple minimal de cod= e montrant ce que tu utilises on peut t'indiquer comment le modifier avec les= tags et/ou une variable s=C3=A9par=C3=A9e.
Mais le plus simple est probablement d'utiliser \cueDuring comme indiqu=C3= =A9 dans la documentation, qui a l'avantage d'avoir presque tout automatis=C3= =A9.

Cordialement,
Xavier


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6634c64dd5ab4_3334ef339f05035e6-- From MAILER-DAEMON Fri May 3 12:41:59 2024 Return-Path: Date: Fri, 03 May 2024 12:41:59 +0000 From: Olivier Charade via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Timline_pour_musique_de?= =?UTF-8?Q?_film?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6634db974b974_3334ef33a04509416"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30144 X-Discourse-Topic-Id: 5696 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/timline-pour-musique-de-film/5696 ----==_mimepart_6634db974b974_3334ef33a04509416 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 En implantant le code dans la "vraie" partition, je m'aper=C3=A7ois que le "A= bracadabra" est n=C3=A9cessaire alors que je prenais =C3=A7a pour un private = joke. Je veux bien qu'on m'explique. --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/timline-pour-musique-de-film/5696/9). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6634db974b974_3334ef33a04509416 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Olivier Charade olicha
Mai 3<= /span>

En implantant le code dans la "vraie" partition, je m'aper=C3=A7ois qu= e le "Abracadabra" est n=C3=A9cessaire alors que je prenais =C3=A7a pour un p= rivate joke.
Je veux bien qu'on m'explique.


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6634db974b974_3334ef33a04509416-- From MAILER-DAEMON Fri May 3 12:54:13 2024 Return-Path: Date: Fri, 03 May 2024 12:54:13 +0000 From: MartialR via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Timline_pour_musique_de?= =?UTF-8?Q?_film?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6634de75238d1_3334ef33a04514856"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30145 X-Discourse-Topic-Id: 5696 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/timline-pour-musique-de-film/5696 ----==_mimepart_6634de75238d1_3334ef33a04514856 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 la fonction textMark attends un du texte=20 textMark =3D \mark \markup "texte"=20 on peut mettre "?" =C3=A0 la place "Abracadabra" Jean est joueur :-)=20 ``` timeMark =3D { \tweak X-offset #-1.5 \tweak details.time-mark ##t \tweak color "red" \textMark "?" \mark \default } ``` --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/timline-pour-musique-de-film/5696/10). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6634de75238d1_3334ef33a04514856 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
MartialR
Mai 3<= /span>

la fonction textMark attends un du texte
textMark =3D \mark \markup "texte"

on peut mettre "?" =C3=A0 la place "Abr= acadabra"
Jean est joueur 3D":slight_smile:"

timeMark =3D  {
  \tweak X-offset #-1.5
  \tweak details.time-mark ##t \tweak color "red"
  \textMark
  "?"  \mark \default
}

Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6634de75238d1_3334ef33a04514856-- From MAILER-DAEMON Fri May 3 13:08:16 2024 Return-Path: Date: Fri, 03 May 2024 13:08:16 +0000 From: Olivier Charade via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Timline_pour_musique_de?= =?UTF-8?Q?_film?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6634e1c017756_3334ef33a2c52024"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30146 X-Discourse-Topic-Id: 5696 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/timline-pour-musique-de-film/5696 ----==_mimepart_6634e1c017756_3334ef33a2c52024 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 OK. Donc il y a quelque part une astuce en langue de magicien pour remplacer = ce texte par la valeur du time code. Je me rends compte que j'ai un probl=C3=A8me de priorit=C3=A9 entre le tempo = et les reharsal marks. Le tempo veut toujours se mettre en dessous. J'ai saut= =C3=A9 une ligne dans l'exemple? --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/timline-pour-musique-de-film/5696/11). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6634e1c017756_3334ef33a2c52024 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Olivier Charade olicha
Mai 3<= /span>

OK. Donc il y a quelque part une astuce en langue de magicien pour rem= placer ce texte par la valeur du time code.
Je me rends compte que j'ai un probl=C3=A8me de priorit=C3=A9 entre le tempo = et les reharsal marks. Le tempo veut toujours se mettre en dessous. J'ai saut= =C3=A9 une ligne dans l'exemple?


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6634e1c017756_3334ef33a2c52024-- From MAILER-DAEMON Fri May 3 15:30:53 2024 Return-Path: Date: Fri, 03 May 2024 15:30:53 +0000 From: Christophe via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6635032d4c792_3334ef339f0525823"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30148 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_6635032d4c792_3334ef339f0525823 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Je rebondis sur ton offre Xavier, car je tourne en rond et n'arrive =C3=A0 ri= en. Dans le code suivant, j'aimerais que la harpe apparaisse en "=C3=A0 d=C3=A9fa= ut" en citation deux mesures avant le d=C3=A9but de la fl=C3=BBte : \version "2.24.1" \header { title =3D "citations" } \paper { #(set-paper-size "a4") } global =3D { \key c \major \numericTimeSignature \time 3/4 } flute =3D \relative c'' { \global % En avant la musique ! R2. *2 r8 g'' \pp ~g8 d e4 ~ e4 d8 \< b a b \! e4 \> d8 g, b4 \! } upper =3D \relative c'' { \global % En avant la musique ! \hideNotes \change Staff =3D "lower" s8=20 \shape #'((-0.4 . -0)(0 . 3)(0 . 3)(0 . 0)) Slur \override DynamicLineSpanner.staff-padding =3D 3 \voiceOne d,\> ( a' d e fis \change Staff =3D "upper" \unHideNotes \oneVoice r8 d, e fis a d ) \! =20 2 r4 2. } lower =3D \relative c' { \global % En avant la musique ! r8 \shiftOn d,, a' d e fis ~ fis 2. =20 s2. s } flutePart =3D \new Staff \with { instrumentName =3D "Fl=C3=BBte" midiInstrument =3D "flute" } \flute harpPart =3D \new PianoStaff \with { instrumentName =3D "Harpe" } << \new Staff =3D "upper" \with { midiInstrument =3D "orchestral harp" } \upper \new Staff =3D "lower" \with { midiInstrument =3D "orchestral harp" } { \clef bass \lower } >> \score { << \flutePart \harpPart >> \layout { } \midi { \tempo 4=3D100 } } Merci pour votre aide. Christophe PS : question subsidiaire qui fait l'objet d'une autre demande d'ailleurs : = pourquoi les port=C3=A9es de la harpe sont aussi =C3=A9cart=C3=A9es ? --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/7). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6635032d4c792_3334ef339f0525823 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Christophe Christophe
Mai 3<= /span>

Je rebondis sur ton offre Xavier, car je tourne en rond et n'arrive = =C3=A0 rien.
Dans le code suivant, j'aimerais que la harpe apparaisse en "=C3=A0 d=C3=A9fa= ut" en citation deux mesures avant le d=C3=A9but de la fl=C3=BBte :
\version "2.24.1"

\header {
title =3D "citations"
}

\paper {
#(set-paper-size "a4")
}

global =3D {
\key c \major
\numericTimeSignature
\time 3/4
}

flute =3D \relative c'' {
\global
% En avant la musique !
R2. *2
r8 g'' \pp ~g8 d e4 ~
e4 d8 < b a b !
e4 > d8 g, b4 !
}

upper =3D \relative c'' {
\global
% En avant la musique !
\hideNotes \change Staff =3D "lower" s8
\shape #'((-0.4 . -0)(0 . 3)(0 . 3)(0 . 0)) Slur
\override DynamicLineSpanner.staff-padding =3D 3
\voiceOne d,> ( a' d e fis \change Staff =3D "upper" \unHideNotes
\oneVoice r8 d, e fis a d ) !

<f! a>2 r4
<f, \flageolet a\flageolet >2.
}

lower =3D \relative c' {
\global
% En avant la musique !
r8 \shiftOn d,, a' d e fis ~ fis 2.

s2. s
}

flutePart =3D \new Staff \with {
instrumentName =3D "Fl=C3=BBte"
midiInstrument =3D "flute"
} \flute

harpPart =3D \new PianoStaff \with {
instrumentName =3D "Harpe"
} <<
\new Staff =3D "upper" \with {
midiInstrument =3D "orchestral harp"
} \upper
\new Staff =3D "lower" \with {
midiInstrument =3D "orchestral harp"
} { \clef bass \lower }

\score {
<<
\flutePart
\harpPart

\layout { }
\midi {
\tempo 4=3D100
}
}

Merci pour votre aide.
Christophe
PS : question subsidiaire qui fait l'objet d'une autre demande d'ailleurs : = pourquoi les port=C3=A9es de la harpe sont aussi =C3=A9cart=C3=A9es ?


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6635032d4c792_3334ef339f0525823-- From MAILER-DAEMON Fri May 3 17:17:56 2024 Return-Path: Date: Fri, 03 May 2024 17:17:56 +0000 From: MartialR via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Timline_pour_musique_de?= =?UTF-8?Q?_film?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_66351c447e3ca_3334ef339f05312be"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30149 X-Discourse-Topic-Id: 5696 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/timline-pour-musique-de-film/5696 ----==_mimepart_66351c447e3ca_3334ef339f05312be Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 moi aussi je n'ai pas encore trouv=C3=A9 ; quote=3D"olicha, post:11, topic:5696, full:true"] Je me rends compte que j'ai un probl=C3=A8me de priorit=C3=A9 entre le time c= ode et les reharsal marks. Il faudrait le time code au-dessus. [/quote] --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/timline-pour-musique-de-film/5696/12). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_66351c447e3ca_3334ef339f05312be Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
MartialR
Mai 3<= /span>

moi aussi je n'ai pas encore trouv=C3=A9 ;

quote=3D"olicha, post:11, topic:5696, f= ull:true"]
Je me rends compte que j'ai un probl=C3=A8me de priorit=C3=A9 entre le time c= ode et les reharsal marks. Il faudrait le time code au-dessus.
[/quote]


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_66351c447e3ca_3334ef339f05312be-- From MAILER-DAEMON Fri May 3 19:11:12 2024 Return-Path: Date: Fri, 03 May 2024 19:11:12 +0000 From: xavier via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Timline_pour_musique_de?= =?UTF-8?Q?_film?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_663536d091684_3334ef339dc55336b"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30151 X-Discourse-Topic-Id: 5696 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/timline-pour-musique-de-film/5696 ----==_mimepart_663536d091684_3334ef339dc55336b Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Effectivement `RehearsalMark` a une valeur plus =C3=A9lev=C3=A9e de `outside-= staff-priority` que `TextMark` (cf [NR A.18](https://lilypond.org/doc/v2.25/D= ocumentation/notation/default-values-for-outside_002dstaff_002dpriority.fr.ht= ml)), donc en cas de collision il se placera au-dessus. Ajouter un ` \tweak outside-staff-priority #1600` dans le timeMark juste ava= nt la commande `\textMark`. Attention dans le code propos=C3=A9 par Martial il y a `\override RehearsalMa= rk.padding` dans le bloc `\layout` qui court-circuite `outside-staff-priority= `. Je remplacerais ces `padding` par `outside-staff-padding` (et une autre va= leur). Cordialement, Xavier --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/timline-pour-musique-de-film/5696/13). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_663536d091684_3334ef339dc55336b Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
xavier xavier
Mai 3<= /span>

Effectivement RehearsalMark a une valeur plus =C3=A9lev=C3=A9e de outside-s= taff-priority que TextMark (cf NR A.18), donc en cas de collision il se pl= acera au-dessus.

Ajouter un \tweak outside-staff-priority #1= 600 dans le timeMark juste avant la commande \textMark.
Attention dans le code propos=C3=A9 par Martial il y a \override RehearsalMark.padd= ing dans le bloc \layout qui court-circuite outside-staff-priority. = Je remplacerais ces padding par outside-staff-padding (et une autre valeur)= .

Cordialement,
Xavier


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_663536d091684_3334ef339dc55336b-- From MAILER-DAEMON Fri May 3 19:30:46 2024 Return-Path: Date: Fri, 03 May 2024 19:30:46 +0000 From: xavier via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_66353b6679b0d_3334ef339dc558828"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30152 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_66353b6679b0d_3334ef339dc558828 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Oui mais du coup une citation "harp lower" pour la premi=C3=A8re mesure et "h= arp upper" pour la deuxi=C3=A8me ? Avec une cueClef bass pour la 1e et une cu= eClef treble pour la 2e ? Je dois avouer que dans l'id=C3=A9al j'aimerais proposer une solution avec `c= ueDuring` comme dans la documentation, mais que pour des cas compliqu=C3=A9s = j'aurais tendance =C3=A0 tricher. --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/8). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_66353b6679b0d_3334ef339dc558828 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
xavier xavier
Mai 3<= /span>

Oui mais du coup une citation "harp lower" pour la premi=C3=A8re mesur= e et "harp upper" pour la deuxi=C3=A8me ? Avec une cueClef bass pour la 1e et= une cueClef treble pour la 2e ?

Je dois avouer que dans l'id=C3=A9al j'= aimerais proposer une solution avec cueDuring comme dans la documentation, m= ais que pour des cas compliqu=C3=A9s j'aurais tendance =C3=A0 tricher.


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_66353b6679b0d_3334ef339dc558828-- From MAILER-DAEMON Fri May 3 19:48:24 2024 Return-Path: Date: Fri, 03 May 2024 19:48:24 +0000 From: xavier via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_66353f8839634_3334ef339dc5643e8"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30153 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_66353f8839634_3334ef339dc5643e8 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Sans tricher : dans `flute`, remplacer `R2.*2` par ``` \tag #'part { <>^\markup { \tiny "harpe" } } \cueDuringWithClef "harpLower" #UP "bass" { R2. } \cueDuring "harpUpper" #UP { R2. } ``` Ajouter apr=C3=A8s les variables et avant le bloc `\score` ``` \addQuote "harpUpper" { \upper } \addQuote "harpLower" { \lower } ``` Voil=C3=A0, on peut utiliser ``` \removeWithTag #'part { \killCues { \flute } } ``` pour le conducteur, comme dans l'exemple de NR 1.6.3 Writing parts. --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/9). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_66353f8839634_3334ef339dc5643e8 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
xavier xavier
Mai 3<= /span>

Sans tricher : dans flute, remplacer R2.*2 par

\tag #'part { <>^\markup=
 { \tiny "harpe" } }
\cueDuringWithClef "harpLower" #UP "bass" { R2. }
\cueDuring "harpUpper" #UP { R2. }

Ajouter apr=C3=A8s les variables et ava= nt le bloc \score

\addQuote "harpUpper" { \upper=
 }
\addQuote "harpLower" { \lower }

Voil=C3=A0, on peut utiliser

\removeWithTag #'part { \killC=
ues { \flute } }

pour le conducteur, comme dans l'exempl= e de NR 1.6.3 Writing parts.


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_66353f8839634_3334ef339dc5643e8-- From MAILER-DAEMON Fri May 3 19:57:37 2024 Return-Path: Date: Fri, 03 May 2024 19:57:37 +0000 From: xavier via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Nuances_diff=C3=A9rentes?= =?UTF-8?Q?_entre_conducteur_et_parties_s=C3=A9par=C3=A9es?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_663541b0dd580_3334ef33a185698bb"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30154 X-Discourse-Topic-Id: 5697 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/nuances-differentes-entre-conducteur-et-parties-separees/5697 ----==_mimepart_663541b0dd580_3334ef33a185698bb Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 C'est d=C3=BB aux notes transparentes (`\hideNotes`) qui sont en fait une oct= ave trop hautes. Et comme elles sont invisibles et pas supprim=C3=A9es elles = prennent de l'espacement vertical. Rajouter un `,` =C3=A0 la premi=C3=A8re note de upper (apr=C3=A8s le `\change= Staff =3D "lower"`), mais je r=C3=A9it=C3=A8re ma proposition d'utiliser en = plus removeNotes au lieu de hideNotes comme propos=C3=A9 [ici](https://lilypo= nd.community/t/harpe-liaisons-sur-les-deux-voix/5689/8). --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/nuances-differentes-entre-conducteur-et-parties-separees/5697/5). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_663541b0dd580_3334ef33a185698bb Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
xavier xavier
Mai 3<= /span>

C'est d=C3=BB aux notes transparentes (\hideNotes) qui sont en fait u= ne octave trop hautes. Et comme elles sont invisibles et pas supprim=C3=A9es = elles prennent de l'espacement vertical.

Rajouter un , =C3=A0 la premi=C3=A8re = note de upper (apr=C3=A8s le \change Staff =3D "lower"), mais je r=C3=A9it= =C3=A8re ma proposition d'utiliser en plus removeNotes au lieu de hideNotes c= omme propos=C3=A9 ici.


Pour poster dans ce sujet, visitez la page du su= jet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_663541b0dd580_3334ef33a185698bb-- From MAILER-DAEMON Fri May 3 20:16:00 2024 Return-Path: Date: Fri, 03 May 2024 20:16:00 +0000 From: Olivier Charade via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_erreur_dans_ly:duration_-?= =?UTF-8?Q?_o=C3=B9_chercher=3F?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6635460063506_3334ef339f05752b6"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30155 X-Discourse-Topic-Id: 5700 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/erreur-dans-ly-duration-ou-chercher/5700 ----==_mimepart_6635460063506_3334ef339f05752b6 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonsoir, Quand la partition commence =C3=A0 =C3=AAtre bien charg=C3=A9e, c'est le type= d'erreur introubale au pif. Voil=C3=A0 tout ce que j'ai, sans la moindre indication de ligne de mon code = qui aurait caus=C3=A9 =C3=A7a. Si quelqu'un a une piste... ``` D=C3=A9marrage lilypond 2.24.0 [The_Flying_Sailor.ly]... Traitement de =C2=AB /Volumes/olivier.charade/prive/musique/partitions/The_Fl= ying_Sailor/The_Flying_Sailor.ly =C2=BB Analyse...ERROR: In procedure ly:duration =20 =20 =20 =20
Olivier Charade olicha
Mai 3<= /span>

Bonsoir,
Quand la partition commence =C3=A0 =C3=AAtre bien charg=C3=A9e, c'est le type= d'erreur introubale au pif.
Voil=C3=A0 tout ce que j'ai, sans la moindre indication de ligne de mon code = qui aurait caus=C3=A9 =C3=A7a.
Si quelqu'un a une piste...

D=C3=A9marrage lilypond 2.24.0=
 [The_Flying_Sailor.ly]...
Traitement de =C2=AB /Volumes/olivier.charade/prive/musique/partitions/The_Fl=
ying_Sailor/The_Flying_Sailor.ly =C2=BB
Analyse...ERROR: In procedure ly:duration<?:
In procedure ly:duration<?: Wrong type argument in position 2 (expecting D=
uration): ()
Arr=C3=AAt=C3=A9 avec le code de retour 1.

Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6635460063506_3334ef339f05752b6-- From MAILER-DAEMON Fri May 3 21:59:41 2024 Return-Path: Date: Fri, 03 May 2024 21:59:41 +0000 From: MartialR via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Timline_pour_musique_de?= =?UTF-8?Q?_film?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_66355e4d926d3_3334ef33a1858077b"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30156 X-Discourse-Topic-Id: 5696 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/timline-pour-musique-de-film/5696 ----==_mimepart_66355e4d926d3_3334ef33a1858077b Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 ha je n'avais pas =C3=A9t=C3=A9 au-dessus de 1000 je testerai demain=20 bonne nuit --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/timline-pour-musique-de-film/5696/14). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_66355e4d926d3_3334ef33a1858077b Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
MartialR
Mai 3<= /span>

ha je n'avais pas =C3=A9t=C3=A9 au-dessus de 1000
je testerai demain
bonne nuit


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_66355e4d926d3_3334ef33a1858077b-- From MAILER-DAEMON Sat May 4 10:03:05 2024 Return-Path: Date: Sat, 04 May 2024 10:03:05 +0000 From: MartialR via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Timline_pour_musique_de?= =?UTF-8?Q?_film?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_663607d966ba8_3334ef33a1858669b"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30157 X-Discourse-Topic-Id: 5696 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/timline-pour-musique-de-film/5696 ----==_mimepart_663607d966ba8_3334ef33a1858669b Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour, obtiens ceci maintenant.=20 Tout est align=C3=A9 verticalement.=20 ``` \version "2.24" %%%%%%%%%%%%%%%%%%%%%%%%%%%% %la fonction pour afficher le temps d'apr=C3=A8s Jean #(define (Custom_engraver!! context) (define (format-time seconds) (let* ((minutes (euclidean-quotient seconds 60)) (rest (euclidean-remainder seconds 60)) (seconds (euclidean-quotient rest 1)) (rest (euclidean-remainder rest 1))) (string-append (if (zero? minutes) "" (format #f "~a:" minutes)) (format #f "~a:~a" seconds (round (* rest 24)))))) (let ((wholes-per-minute 15) (last-time ZERO-MOMENT) (total-time 0) (marks '())) (make-engraver ((process-music engraver) (let* ((new-time (ly:context-current-moment context)) (time-delta (ly:moment-main (ly:moment-sub new-time last-time))) (new-wholes-per-minute (and=3D> (ly:context-property context 'tempoWholesPerMinute #f) ly:moment-main))) (set! total-time (+ total-time (* 60 (/ time-delta wholes-per-minute)))) (set! last-time new-time) (when new-wholes-per-minute (set! wholes-per-minute new-wholes-per-minute)))) (acknowledgers ((text-mark-interface engraver grob source-engraver) (set! marks (cons grob marks)))) ((process-acknowledged engraver) (for-each (lambda (grob) (when (assq-ref (ly:grob-property grob 'details) 'time-mar= k) (ly:grob-set-property! grob 'text (format-time total-time)))) marks) (set! marks '()))))) \layout { \context { \Score \consists #Custom_engraver!! } } timeMark =3D { \tweak outside-staff-priority #1600 \tweak X-offset #-1.5 \tweak Y-offset #12 \tweak details.time-mark ##t \tweak color "red" \textMark "Abracadabra" \mark \default } %%%%%%%%%%%%%%%%%%%%%%%%%%%% \header { } \paper { top-margin =3D 20 indent =3D 20 } %mise en forme g=C3=A9n=C3=A9rale \layout { \context { \Score \override MetronomeMark.padding =3D #17 \override RehearsalMark.padding =3D#8 \override RehearsalMark.outside-staff-padding =3D #2 \override StaffGrouper.staff-staff-spacing.padding =3D 0 \override StaffGrouper.staff-staff-spacing.basic-distance =3D 10 } \context { \Voice \override StaffGrouper. staffgroup-staff-spacing.basic-distance =3D #0 } \context { \Lyrics \override LyricText.outside-staff-padding =3D #100 } } % le format rhytMicForme =3D { \clef percussion %\hide NoteHead \override NoteHead.style =3D #'cross \override NoteHead.no-ledgers =3D ##t \override StaffSymbol.line-count =3D #1 \numericTimeSignature \stemDown } Flute =3D \relative { R1 R1 R1 R1 R2. R1 R1 R1 } structure =3D { \set Score.rehearsalMarkFormatter =3D #format-mark-circle-numbers %\override Score.RehearsalMark.padding =3D#0 \tempo 4=3D72 r1 \timeMark \bar"||" r1 \timeMark r1 \timeMark % \tempo 4=3D120 r1 \timeMark \time 3/4 R2. \timeMark \tempo 4 =3D 180 \time 4/4 r1 \timeMark r1 \timeMark } rythmBarre =3D\relative { \rhytMicForme \time 4/4 \tweak Y-offset #13 \tweak color "red" \textMark "0.0" c4 c c c \repeat unfold 2 { c4 c c c } c c c \repeat unfold 4 { c4 c c c } } descriptionText =3D { r1 \textMark\markup\bold\column{ \box"Underwater Scene" \normal-text "X" } r1 r1 r1 r4 r4 \textMark\markup\bold\column{ \box"Landscape" \normal-text "X" } } \score { \new StaffGroup \with { \override StaffGrouper .staffgroup-staff-spacing .basic-distance =3D 30 } << \new RhythmicStaff \with { instrumentName =3D \markup\column{ "Hitpoints" "Click Track" } } \new Voice =3D "myRhythm" \rythmBarre \new Lyrics { \descriptionText } \new Devnull{ \structure } \new Staff \with { instrumentName =3D "Flute" } { \Flute } >> \layout { } } ``` Cordialement --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/timline-pour-musique-de-film/5696/15). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_663607d966ba8_3334ef33a1858669b Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
MartialR
Mai 4<= /span>

Bonjour,
obtiens ceci maintenant.
Tout est align=C3=A9 verticalement.

\version "2.24"
%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%la fonction pour afficher le temps d'apr=C3=A8s Jean
#(define (Custom_engraver!! context)
   (define (format-time seconds)
     (let* ((minutes (euclidean-quotient seconds 60))
            (rest (euclidean-remainder seconds 60))
            (seconds (euclidean-quotient rest 1))
            (rest (euclidean-remainder rest 1)))
       (string-append (if (zero? minutes) "" (format #f "~a:" minutes))
                      (format #f "~a:~a" seconds (round (* rest 24))))))
   (let ((wholes-per-minute 15)
         (last-time ZERO-MOMENT)
         (total-time 0)
         (marks '()))
     (make-engraver
      ((process-music engraver)
       (let* ((new-time (ly:context-current-moment context))
              (time-delta (ly:moment-main (ly:moment-sub new-time last-time)))
              (new-wholes-per-minute
               (and=3D> (ly:context-property context 'tempoWholesPerMinute=
 #f)
                      ly:moment-main)))
         (set! total-time
               (+ total-time (* 60 (/ time-delta wholes-per-minute))))
         (set! last-time new-time)
         (when new-wholes-per-minute
           (set! wholes-per-minute new-wholes-per-minute))))
      (acknowledgers
       ((text-mark-interface engraver grob source-engraver)
        (set! marks (cons grob marks))))
      ((process-acknowledged engraver)
       (for-each (lambda (grob)
                   (when (assq-ref (ly:grob-property grob 'details) 'time-mar=
k)
                     (ly:grob-set-property! grob 'text (format-time
                                                        total-time))))
                 marks)
       (set! marks '())))))

\layout {
  \context {
    \Score
    \consists #Custom_engraver!!
  }
}


timeMark =3D  {
  \tweak outside-staff-priority #1600
  \tweak X-offset #-1.5
  \tweak Y-offset #12
  \tweak details.time-mark ##t \tweak color "red"
  \textMark
  "Abracadabra" \mark \default
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\header {  }
\paper {
  top-margin =3D 20
  indent =3D  20
}
%mise en forme g=C3=A9n=C3=A9rale
\layout {
  \context {
    \Score
    \override MetronomeMark.padding =3D #17
    \override RehearsalMark.padding =3D#8
    \override RehearsalMark.outside-staff-padding =3D #2
    \override StaffGrouper.staff-staff-spacing.padding =3D 0
    \override StaffGrouper.staff-staff-spacing.basic-distance =3D 10
  }

  \context {
    \Voice
    \override StaffGrouper.
    staffgroup-staff-spacing.basic-distance =3D #0
  }
  \context {
    \Lyrics
    \override LyricText.outside-staff-padding =3D #100
  }
}

% le format
rhytMicForme =3D {
  \clef percussion
  %\hide NoteHead
  \override NoteHead.style =3D #'cross
  \override NoteHead.no-ledgers =3D ##t
  \override StaffSymbol.line-count =3D #1
  \numericTimeSignature
  \stemDown
}

Flute =3D \relative {
  R1 R1 R1 R1
  R2.
  R1 R1 R1
}

structure =3D {
  \set Score.rehearsalMarkFormatter =3D #format-mark-circle-numbers
  %\override Score.RehearsalMark.padding =3D#0
  \tempo 4=3D72
  r1 \timeMark
  \bar"||"
  r1 \timeMark
  r1 \timeMark
  % \tempo 4=3D120
  r1  \timeMark
  \time 3/4
  R2. \timeMark
  \tempo 4 =3D 180
  \time 4/4
  r1 \timeMark
  r1 \timeMark
}

rythmBarre =3D\relative {
  \rhytMicForme
  \time 4/4
  \tweak Y-offset #13 \tweak color "red" \textMark "0.0"
  c4 c c c
  \repeat unfold 2 {  c4  c c c  }
  c c  c
  \repeat unfold 4 {  c4  c c c  }
}

descriptionText =3D {
  r1  \textMark\markup\bold\column{ \box"Underwater Scene"  \normal-text "X" }
  r1  r1 r1
  r4 r4
  \textMark\markup\bold\column{ \box"Landscape"  \normal-text "X" }
}

\score {
  \new StaffGroup \with {
    \override StaffGrouper
    .staffgroup-staff-spacing
    .basic-distance =3D 30
  } <<
    \new RhythmicStaff
    \with { instrumentName =3D \markup\column{ "Hitpoints" "Click Track" }  }
    \new Voice =3D "myRhythm" \rythmBarre
    \new Lyrics { \descriptionText }
    \new  Devnull{ \structure }
    \new Staff \with { instrumentName =3D "Flute" }
    { \Flute }
  >>
  \layout { }
}

Cordialement


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_663607d966ba8_3334ef33a1858669b-- From MAILER-DAEMON Sat May 4 11:43:56 2024 Return-Path: Date: Sat, 04 May 2024 11:43:56 +0000 From: Olivier Charade via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Timline_pour_musique_de?= =?UTF-8?Q?_film?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_66361f7bef4d0_3334ef339dc592113"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30158 X-Discourse-Topic-Id: 5696 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/timline-pour-musique-de-film/5696 ----==_mimepart_66361f7bef4d0_3334ef339dc592113 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Ah oui, c'est pas mal. Pour compl=C3=A9ter, la fonction de calcul du time code en commen=C3=A7ant pa= r l'heure: ``` (define (format-time seconds) (let* ((heures (euclidean-quotient seconds 3600)) (resta (euclidean-remainder seconds 3600)) (minutes (euclidean-quotient resta 60)) (restb (euclidean-remainder resta 60)) (seconds (euclidean-quotient restb 1)) (restc (euclidean-remainder restb 1))) (string-append (format #f "~2,'0d:" heures) (format #f "~2,'0d:" minutes) (format #f "~2,'0d.~2,'0d" seconds (round (* restc 24)= ))))) ``` Il ne reste plus qu'=C3=A0 trouver comment forcer la valeur du temps =C3=A9co= ul=C3=A9 (et pour moi =C3=A0 trouver la source de l'erreur mentionn=C3=A9e da= ns le fil d'apr=C3=A8s et qui m'emp=C3=AAche actuellement de voir quoi que ce= soit). --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/timline-pour-musique-de-film/5696/16). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_66361f7bef4d0_3334ef339dc592113 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Olivier Charade olicha
Mai 4<= /span>

Ah oui, c'est pas mal.
Pour compl=C3=A9ter, la fonction de calcul du time code en commen=C3=A7ant pa= r l'heure:

 (define (format-time seconds)
     (let* ((heures (euclidean-quotient seconds 3600))
            (resta (euclidean-remainder seconds 3600))
            (minutes (euclidean-quotient resta 60))
            (restb (euclidean-remainder resta 60))
            (seconds (euclidean-quotient restb 1))
            (restc (euclidean-remainder restb 1)))
       (string-append (format #f "~2,'0d:" heures)
                      (format #f "~2,'0d:" minutes)
                       (format #f "~2,'0d.~2,'0d" seconds (round (* restc 24)=
)))))

Il ne reste plus qu'=C3=A0 trouver comm= ent forcer la valeur du temps =C3=A9coul=C3=A9 (et pour moi =C3=A0 trouver la= source de l'erreur mentionn=C3=A9e dans le fil d'apr=C3=A8s et qui m'emp=C3= =AAche actuellement de voir quoi que ce soit).


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_66361f7bef4d0_3334ef339dc592113-- From MAILER-DAEMON Sat May 4 11:50:04 2024 Return-Path: Date: Sat, 04 May 2024 11:50:04 +0000 From: Cordelia via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_\Version_2.25.12_`outpu?= =?UTF-8?Q?t-filename`_et_`output-suffix`_fonctionnent_ils_chez_vous_=3F?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_663620ecaf026_3334ef33a04598199"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30159 X-Discourse-Topic-Id: 5604 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/version-2-25-12-output-filename-et-output-suffix-fonctionnent-ils-chez-vous/5604 ----==_mimepart_663620ecaf026_3334ef33a04598199 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Comment peux-je utiliser la variable Titre dans ces variables ? e.g. ``` \paper { output-filename =3D #'header:title } ``` Cela ne marche pas ! --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/version-2-25-12-output-filename-et-output-suffix-fonctionnent-ils-chez-= vous/5604/3). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_663620ecaf026_3334ef33a04598199 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Cordelia Cordelia
Mai 4<= /span>

Comment peux-je utiliser la variable Titre dans ces variables ?

e.g.

\paper {
	output-filename =3D #'header:title
}

Cela ne marche pas !


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_663620ecaf026_3334ef33a04598199-- From MAILER-DAEMON Sat May 4 12:56:20 2024 Return-Path: Date: Sat, 04 May 2024 12:56:20 +0000 From: Ben via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_\Version_2.25.12_`outpu?= =?UTF-8?Q?t-filename`_et_`output-suffix`_fonctionnent_ils_chez_vous_=3F?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_663630743142f_3334ef33a2c603674"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30160 X-Discourse-Topic-Id: 5604 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/version-2-25-12-output-filename-et-output-suffix-fonctionnent-ils-chez-vous/5604 ----==_mimepart_663630743142f_3334ef33a2c603674 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Peut-=C3=AAtre avec une fonction scheme, mais pour ma part, je contourne ains= i: Titre =3D "Titre" \header { title =3D \markup \Titre } \paper { output-finename =3D \Titre } > Le 4 mai 2024 =C3=A0 13:49, Cordelia via LilyPond a =C3=A9crit : >=20 > Cordelia Cordelia > Mai 4 > Comment peux-je utiliser la variable Titre dans ces variables ? >=20 > e.g. >=20 > \paper { > output-filename =3D #'header:title > } > Cela ne marche pas ! >=20 > Pour poster dans ce sujet, visitez la page du sujet . >=20 > Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.comm= unity ou visitez la page d'accueil de lil= ypond.community . >=20 > R=C3=A9ponses pr=C3=A9c=C3=A9dentes >=20 > Gilles Yagloops > Avril 21 > J'ai ma r=C3=A9ponse, il faut les mettre dans un bloc paper : > \paper > { > output-filename =3D "test1" > output-suffix =3D "test1" > } >=20 > Gilles Yagloops > Janvier 8 > Nouveaut=C3=A9s de la version 2.25: >=20 > En remplacement des fonctions \bookOutputName et \bookOutputSuffix, nous re= commandons dor=C3=A9navant l=E2=80=99utilisation des variables de papier outp= ut-filename et output-suffix. Bien que les premi=C3=A8res restent pleinement = fonctionnelles, ces derni=C3=A8res sont plus coh=C3=A9rentes et facilement co= mpr=C3=A9hensibles, notamment si elles sont combin=C3=A9es avec des variables= de papier pr=C3=A9d=C3=A9finies. > Pour poster dans ce sujet, visitez la page du sujet . >=20 > Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.comm= unity ou visitez la page d'accueil de lil= ypond.community . >=20 >=20 >=20 > Pour vous d=C3=A9sabonner de ces e-mails, cliquez ici . > --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/version-2-25-12-output-filename-et-output-suffix-fonctionnent-ils-chez-= vous/5604/4). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_663630743142f_3334ef33a2c603674 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Ben Ben
Mai 4<= /span>

Peut-=C3=AAtre avec une fonction scheme, mais pour ma part, je contour= ne ainsi:

Titre =3D "Titre"

\header
{
title =3D \markup \Titre
}
\paper
{
output-finename =3D \Titre
}

Le 4 mai 2= 024 =C3=A0 13:49, Cordelia via LilyPond notifications@notifications.lilypond.community a =C3= =A9crit :

Cordelia https://lilypond.community/u/cordelia Cordelia
Mai 4
Comment peux-je utiliser la variable Titre dans ces variables ?

e.g.

\paper {
output-filename =3D #'header:title
}
Cela ne marche pas !

Pour poster dans ce sujet,= visitez la page du sujet https://lilyp= ond.community/t/version-2-25-12-output-filename-et-output-suffix-fonctionnent= -ils-chez-vous/5604/3.

Pour cr=C3=A9er un nouveau= sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.community mailto:user-fr@lilypond.community ou visitez la page d'acc= ueil de lilypond.community https://lilypond.co= mmunity/.

R=C3=A9ponses pr=C3=A9c=C3= =A9dentes

Gilles https://lilypond.community/u/yagloops Yagloops
Avril 21
J'ai ma r=C3=A9ponse, il faut les mettre dans un bloc paper :
\paper
{
output-filename =3D "test1"
output-suffix =3D "test1"
}

Gilles https://lilypond.community/u/yagloops Yagloops
Janvier 8
Nouveaut=C3=A9s de la version 2.25:

En remplacement des foncti= ons \bookOutputName et \bookOutputSuffix, nous recommandons dor=C3=A9navant l= =E2=80=99utilisation des variables de papier output-filename et output-suffix= . Bien que les premi=C3=A8res restent pleinement fonctionnelles, ces derni=C3= =A8res sont plus coh=C3=A9rentes et facilement compr=C3=A9hensibles, notammen= t si elles sont combin=C3=A9es avec des variables de papier pr=C3=A9d=C3=A9fi= nies.
Pour poster dans ce sujet, visitez la page du sujet https://lilypond.community/t/version-2-25-12-output-filename-et-= output-suffix-fonctionnent-ils-chez-vous/5604/3.

Pour cr=C3=A9er un nouveau= sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.community mailto:user-fr@lilypond.community ou visitez la page d'acc= ueil de lilypond.community https://lilypond.co= mmunity/.

Pour vo= us d=C3=A9sabonner de ces e-mails, cliquez ici https://lilypond.community/email/unsubscribe/da28a4c74dca54fb7f25507a17= 63067fa5988fc39e40c86867adb633a025a955.


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_663630743142f_3334ef33a2c603674-- From MAILER-DAEMON Sat May 4 13:45:12 2024 Return-Path: Date: Sat, 04 May 2024 13:45:12 +0000 From: Gilles via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_\Version_2.25.12_`outpu?= =?UTF-8?Q?t-filename`_et_`output-suffix`_fonctionnent_ils_chez_vous_=3F?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_66363be8b260a_3334ef339dc60913f"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30161 X-Discourse-Topic-Id: 5604 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/version-2-25-12-output-filename-et-output-suffix-fonctionnent-ils-chez-vous/5604 ----==_mimepart_66363be8b260a_3334ef339dc60913f Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 [quote=3D"Cordelia, post:3, topic:5604"] ``` \paper { output-filename =3D #'header:title } ``` [/quote] Bonjour ! C'est dr=C3=B4le, Valentin vient de publier la r=C3=A9ponse sur la = liste anglaise ! #(define (from-header symbol) (let* ((book-header (if $current-book (ly:book-header $current-book) #f)) (bookpart-header (if $current-bookpart (ly:book-header $current-bookpart) #f)) (headers (list bookpart-header book-header $defaultheader)) (headers (filter (lambda (x) x) headers)) (headers-alist (headers-property-alist-chain headers))) (ly:chain-assoc-get (symbol-concatenate 'header: symbol) headers-alist))) \header { title =3D "title" } \paper { output-filename =3D \from-header #'header:title } --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/version-2-25-12-output-filename-et-output-suffix-fonctionnent-ils-chez-= vous/5604/5). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_66363be8b260a_3334ef339dc60913f Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Gilles Yagloops
Mai 4<= /span>
3D"" Cordelia:
\paper {
	output-filename =3D #'header:title
}

Bonjour ! C'est dr=C3=B4le, Valentin vi= ent de publier la r=C3=A9ponse sur la liste anglaise !

#(define (from-header symbol)
(let* ((book-header
(if $current-book (ly:book-header $current-book) #f))
(bookpart-header
(if $current-bookpart (ly:book-header $current-bookpart) #f))
(headers (list bookpart-header book-header $defaultheader))
(headers (filter (lambda (x) x) headers))
(headers-alist (headers-property-alist-chain headers)))
(ly:chain-assoc-get (symbol-concatenate 'header: symbol) headers-alist)))

\header {
title =3D "title"
}

\paper {
output-filename =3D \from-header #'header:title
}


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_66363be8b260a_3334ef339dc60913f-- From MAILER-DAEMON Sat May 4 14:02:03 2024 Return-Path: Date: Sat, 04 May 2024 14:02:03 +0000 From: Gilles via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Lien_Guide_d'extension?= =?UTF-8?Q?_sur_lilypond_community?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_66363fdb92be7_3334ef33a2c61455f"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30162 X-Discourse-Topic-Id: 5701 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/lien-guide-dextension-sur-lilypond-community/5701 ----==_mimepart_66363fdb92be7_3334ef33a2c61455f Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour !=20 Je ne trouve pas le lien de https://extending-lilypond.gitlab.io/fr/index.htm= l dans le menu Liens =C3=A0 gauche de ce site. Il me semble qu'il a toute sa place ici non ? Gilles --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/lien-guide-dextension-sur-lilypond-community/5701/1). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_66363fdb92be7_3334ef33a2c61455f Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Gilles Yagloops
Mai 4<= /span>

Bonjour !
Je ne trouve pas le lien de https://extending-lilypond.gitlab.io/fr/index.html dans le menu Lien= s =C3=A0 gauche de ce site.
Il me semble qu'il a toute sa place ici non ?
Gilles


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_66363fdb92be7_3334ef33a2c61455f-- From MAILER-DAEMON Sat May 4 19:21:30 2024 Return-Path: Date: Sat, 04 May 2024 19:21:30 +0000 From: Olivier Charade via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_erreur_dans_ly:duration_-?= =?UTF-8?Q?_o=C3=B9_chercher=3F?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_66368ab9e32cc_3334ef33a2c62018e"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30163 X-Discourse-Topic-Id: 5700 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/erreur-dans-ly-duration-ou-chercher/5700 ----==_mimepart_66368ab9e32cc_3334ef33a2c62018e Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bon, je m'auto-r=C3=A9ponds. Comme l'erreur contenait le mot duration, j'=C3=A9tais persuad=C3=A9 que mon = travail sur la time line y =C3=A9tait pour quelque chose. En fait pas du tout. En rajoutant du code je me suis aper=C3=A7u que j'avais laiss=C3=A9 une accol= ade ouvrante dans un partCombine sans la fermer. Pourquoi Lilypond ne me l'a pas indiqu=C3=A9 directement, je ne sais pas. J'a= i juste eu le bol de tomber dessus. D=C3=A9sol=C3=A9 du bruit. --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/erreur-dans-ly-duration-ou-chercher/5700/2). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_66368ab9e32cc_3334ef33a2c62018e Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Olivier Charade olicha
Mai 4<= /span>

Bon, je m'auto-r=C3=A9ponds.
Comme l'erreur contenait le mot duration, j'=C3=A9tais persuad=C3=A9 que mon = travail sur la time line y =C3=A9tait pour quelque chose.
En fait pas du tout.
En rajoutant du code je me suis aper=C3=A7u que j'avais laiss=C3=A9 une accol= ade ouvrante dans un partCombine sans la fermer.
Pourquoi Lilypond ne me l'a pas indiqu=C3=A9 directement, je ne sais pas. J'a= i juste eu le bol de tomber dessus.
D=C3=A9sol=C3=A9 du bruit.


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_66368ab9e32cc_3334ef33a2c62018e-- From MAILER-DAEMON Sat May 4 19:35:38 2024 Return-Path: Date: Sat, 04 May 2024 19:35:38 +0000 From: Vincent Gay via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_erreur_dans_ly:duration_-?= =?UTF-8?Q?_o=C3=B9_chercher=3F?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_66368e09d54f2_3334ef339dc62563"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30164 X-Discourse-Topic-Id: 5700 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/erreur-dans-ly-duration-ou-chercher/5700 ----==_mimepart_66368e09d54f2_3334ef339dc62563 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 *De : *Olivier Charade via LilyPond *=C3=80 : *vgay@vintherine.org *Date : *4 mai 2024 21:21:28 *Objet : *[LilyPond] [G=C3=A9n=C3=A9ral] erreur dans ly:duration - o=C3=B9 ch= ercher? > En rajoutant du code je me suis aper=C3=A7u que j'avais laiss=C3=A9 une acc= olade ouvrante dans un partCombine sans la fermer. J'ai une petite conbine =C3=A0 pas cher quand il y a une erreur que je ne com= prends pas : je commence toujours par faire une reidentation automatique, si = elle ne fonctionne pas c'est qu'il y a une accolade ou un double chevron non = ferm=C3=A9 =F0=9F=98=8B --=20 Vincent Gay Envoy=C3=A9 depuis mon saxo-phone --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/erreur-dans-ly-duration-ou-chercher/5700/3). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_66368e09d54f2_3334ef339dc62563 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Vincent Gay Vincent
Mai 4<= /span>

*De : *Olivier Charade via LilyPond notifications@notifications.lilypond.community
*=C3=80 : *vgay@vintherine.org
*Date : *4 mai 2024 21:21:28
*Objet : *[LilyPond] [G=C3=A9n=C3=A9ral] erreur dans ly:duration - o=C3=B9 ch= ercher?

En rajoutant du code je me suis aper=C3=A7u que j'avais laiss=C3=A9 = une accolade ouvrante dans un partCombine sans la fermer.

J'ai une petite conbine =C3=A0 pas cher= quand il y a une erreur que je ne comprends pas : je commence toujours par f= aire une reidentation automatique, si elle ne fonctionne pas c'est qu'il y a = une accolade ou un double chevron non ferm=C3=A9 3D":yum:"=

--
Vincent Gay
Envoy=C3=A9 depuis mon saxo-phone


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_66368e09d54f2_3334ef339dc62563-- From MAILER-DAEMON Sat May 4 20:28:11 2024 Return-Path: Date: Sat, 04 May 2024 20:28:11 +0000 From: Olivier Charade via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Timline_pour_musique_de?= =?UTF-8?Q?_film?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_66369a5bb3e9a_3334ef33a2c6310d0"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30165 X-Discourse-Topic-Id: 5696 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/timline-pour-musique-de-film/5696 ----==_mimepart_66369a5bb3e9a_3334ef33a2c6310d0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Comme j'en suis =C3=A0 programmer en Scheme sans compl=C3=A8tement comprendre= ce que je fais, je sollicite un peu d'aide. J'initialise mon d=C3=A9calage dans ma variable de synchro: ``` synchro_A =3D \drummode { #(define time-origin 1) s1 % d=C3=A9compte %%%%%%%%%%%%% \timeMark cab4^\markup\bold\column{ \box "Underwater Scene" \normal-text "X" } 4 4 4 \repeat unfold 2 {cab4 4 4 4} \timeMark ``` Normalement, la valeur que je voulais mettre =C3=A9tait 3606, mais comme j'ob= tenais n'importe quoi, j'ai mis 1 pour essayer de comprendre le calcul. J'ai modifi=C3=A9 la fonction de Jean sur une seule ligne (de toutes fa=C3=A7= ons, quand j'ai essay=C3=A9 de le faire ailleurs =C3=A7a plantait): ``` (set! total-time (+ total-time time-origin (* 60 (/ time-delta wholes-per-minut= e)))) ``` Je croyais juste ajouter mon d=C3=A9calage, ici 1. Or, en fin de premi=C3=A8re mesure au lieu d'=C3=AAtre =C3=A0 2 +1, soit 3, = je suis =C3=A0 4, et trois mesures plus loin, au lieu d'=C3=AAtre =C3=A0 8 +1= , soit 9, je suis =C3=A0 22, comme si chacune des mesures valait 6. En gros j'ai une progression g=C3=A9om=C3=A9trique l=C3=A0 o=C3=B9 je croyais= avoir une progression arithm=C3=A9tique. Si quelqu'un comprend ce que j'ai =C3=A9crit... --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/timline-pour-musique-de-film/5696/17). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_66369a5bb3e9a_3334ef33a2c6310d0 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Olivier Charade olicha
Mai 4<= /span>

Comme j'en suis =C3=A0 programmer en Scheme sans compl=C3=A8tement com= prendre ce que je fais, je sollicite un peu d'aide.
J'initialise mon d=C3=A9calage dans ma variable de synchro:

synchro_A =3D \drummode {
  #(define time-origin 1)
  s1 % d=C3=A9compte
  %%%%%%%%%%%%%
  \timeMark
  cab4^\markup\bold\column{ \box "Underwater Scene"  \normal-text "X" }
    4 4 4
  \repeat unfold 2 {cab4 4 4 4}
  \timeMark

Normalement, la valeur que je voulais m= ettre =C3=A9tait 3606, mais comme j'obtenais n'importe quoi, j'ai mis 1 pour = essayer de comprendre le calcul.

J'ai modifi=C3=A9 la fonction de Jean s= ur une seule ligne (de toutes fa=C3=A7ons, quand j'ai essay=C3=A9 de le faire= ailleurs =C3=A7a plantait):

(set! total-time
               (+ total-time time-origin (* 60 (/ time-delta wholes-per-minut=
e))))

Je croyais juste ajouter mon d=C3=A9cal= age, ici 1.
Or, en fin de premi=C3=A8re mesure au lieu d'=C3=AAtre =C3=A0 2 +1, soit 3, = je suis =C3=A0 4, et trois mesures plus loin, au lieu d'=C3=AAtre =C3=A0 8 +1= , soit 9, je suis =C3=A0 22, comme si chacune des mesures valait 6.
En gros j'ai une progression g=C3=A9om=C3=A9trique l=C3=A0 o=C3=B9 je croyais= avoir une progression arithm=C3=A9tique.
Si quelqu'un comprend ce que j'ai =C3=A9crit...


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_66369a5bb3e9a_3334ef33a2c6310d0-- From MAILER-DAEMON Sat May 4 21:08:44 2024 Return-Path: Date: Sat, 04 May 2024 21:08:44 +0000 From: Gilles via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Timline_pour_musique_de?= =?UTF-8?Q?_film?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6636a3dbdef13_3334ef33a2c636431"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30166 X-Discourse-Topic-Id: 5696 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/timline-pour-musique-de-film/5696 ----==_mimepart_6636a3dbdef13_3334ef33a2c636431 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 [quote=3D"olicha, post:17, topic:5696"] ` #(define time-origin 1)` [/quote] Je pense qu'il faut d=C3=A9finir un Timecode start, et tant qu'=C3=A0 faire d= es images pas seconde aussi... Malheureusement je ne sais comment r=C3=A9gler le Timecode start =C3=A0 l'ima= ge pr=C3=AAt, =C3=A7a fonctionne =C3=A0 la seconde pr=C3=AAt seulement...=20 Et pareil pour les images par seconde, il arrive pourtant qu'il y ait des for= mats du type 29,76 ips... \version "2.24" %%%%%%%%%%%%%%%%%%%%%%%%%%%% %la fonction pour afficher le temps d'apr=C3=A8s Jean #(define (Custom_engraver!! context) (define (format-time seconds) (let* ((heures (euclidean-quotient seconds 3600)) (resta (euclidean-remainder seconds 3600)) (minutes (euclidean-quotient resta 60)) (restb (euclidean-remainder resta 60)) (seconds (euclidean-quotient restb 1)) (restc (euclidean-remainder restb 1))) (string-append (format #f "~2,'0d:" heures) (format #f "~2,'0d:" minutes) (format #f "~2,'0d.~2,'0d" seconds (round (* restc ips= )))))) (let ((wholes-per-minute 15) (last-time ZERO-MOMENT) (total-time timecode-start) (marks '())) (make-engraver ((process-music engraver) (let* ((new-time (ly:context-current-moment context)) (time-delta (ly:moment-main (ly:moment-sub new-time last-time))) (new-wholes-per-minute (and=3D> (ly:context-property context 'tempoWholesPerMinute #f) ly:moment-main))) (set! total-time (+ total-time (* 60 (/ time-delta wholes-per-minute)))) (set! last-time new-time) (when new-wholes-per-minute (set! wholes-per-minute new-wholes-per-minute)))) (acknowledgers ((text-mark-interface engraver grob source-engraver) (set! marks (cons grob marks)))) ((process-acknowledged engraver) (for-each (lambda (grob) (when (assq-ref (ly:grob-property grob 'details) 'time-mar= k) (ly:grob-set-property! grob 'text (format-time total-time)))) marks) (set! marks '()))))) #(define ips 24) #(define timecode-start 10) \layout { \context { \Score \consists #Custom_engraver!! } } timeMark =3D { \tweak outside-staff-priority #1600 \tweak X-offset #-1.5 \tweak Y-offset #12 \tweak details.time-mark ##t \tweak color "red" \textMark "Abracadabra" \mark \default } %%%%%%%%%%%%%%%%%%%%%%%%%%%% \header { } \paper { top-margin =3D 20 indent =3D 20 } %mise en forme g=C3=A9n=C3=A9rale \layout { \context { \Score \override MetronomeMark.padding =3D #17 \override RehearsalMark.padding =3D#8 \override RehearsalMark.outside-staff-padding =3D #2 \override StaffGrouper.staff-staff-spacing.padding =3D 0 \override StaffGrouper.staff-staff-spacing.basic-distance =3D 10 } \context { \Voice \override StaffGrouper. staffgroup-staff-spacing.basic-distance =3D #0 } \context { \Lyrics \override LyricText.outside-staff-padding =3D #100 } } % le format rhytMicForme =3D { \clef percussion %\hide NoteHead \override NoteHead.style =3D #'cross \override NoteHead.no-ledgers =3D ##t \override StaffSymbol.line-count =3D #1 \numericTimeSignature \stemDown } Flute =3D \relative { R1 R1 R1 R1 R2. R1 R1 R1 } structure =3D { \set Score.rehearsalMarkFormatter =3D #format-mark-circle-numbers %\override Score.RehearsalMark.padding =3D#0 \tempo 4=3D72 \timeMark r1 \timeMark \bar"||" r1 \timeMark r1 \timeMark % \tempo 4=3D120 r1 \timeMark \time 3/4 R2. \timeMark \tempo 4 =3D 180 \time 4/4 r1 \timeMark r1 \timeMark } rythmBarre =3D\relative { \rhytMicForme \time 4/4 \tweak self-alignment-X #CENTER \tweak color "red" \textMark "" c4 c c c \repeat unfold 2 { c4 c c c } c c c \repeat unfold 4 { c4 c c c } } descriptionText =3D { r1 \textMark\markup\bold\column{ \box"Underwater Scene" \normal-text "X" } r1 r1 r1 r4 r4 \textMark\markup\bold\column{ \box"Landscape" \normal-text "X" } } \score { \new StaffGroup \with { \override StaffGrouper .staffgroup-staff-spacing .basic-distance =3D 30 } << \new RhythmicStaff \with { instrumentName =3D \markup\column{ "Hitpoints" "Click Track" } } \new Voice =3D "myRhythm" \rythmBarre \new Lyrics { \descriptionText } \new Devnull{ \structure } \new Staff \with { instrumentName =3D "Flute" } { \Flute } >> \layout { } } --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/timline-pour-musique-de-film/5696/18). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6636a3dbdef13_3334ef33a2c636431 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Gilles Yagloops
Mai 4<= /span>
3D"" olicha:

#(define time-origin 1)

Je pense qu'il faut d=C3=A9finir un Tim= ecode start, et tant qu'=C3=A0 faire des images pas seconde aussi...
Malheureusement je ne sais comment r=C3=A9gler le Timecode start =C3=A0 l'ima= ge pr=C3=AAt, =C3=A7a fonctionne =C3=A0 la seconde pr=C3=AAt seulement...
Et pareil pour les images par seconde, il arrive pourtant qu'il y ait des for= mats du type 29,76 ips...

\version "2.24"
%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%la fonction pour afficher le temps d'apr=C3=A8s Jean
#(define (Custom_engraver!! context)
(define (format-time seconds)
(let* ((heures (euclidean-quotient seconds 3600))
(resta (euclidean-remainder seconds 3600))
(minutes (euclidean-quotient resta 60))
(restb (euclidean-remainder resta 60))
(seconds (euclidean-quotient restb 1))
(restc (euclidean-remainder restb 1)))
(string-append (format #f "~2,'0d:" heures)
(format #f "~2,'0d:" minutes)
(format #f "~2,'0d.~2,'0d" seconds (round (* restc ips))))))
(let ((wholes-per-minute 15)
(last-time ZERO-MOMENT)
(total-time timecode-start)
(marks '()))
(make-engraver
((process-music engraver)
(let* ((new-time (ly:context-current-moment context))
(time-delta (ly:moment-main (ly:moment-sub new-time last-time)))
(new-wholes-per-minute
(and=3D> (ly:context-property context 'tempoWholesPerMinute #f)
ly:moment-main)))
(set! total-time
(+ total-time (* 60 (/ time-delta wholes-per-minute))))
(set! last-time new-time)
(when new-wholes-per-minute
(set! wholes-per-minute new-wholes-per-minute))))
(acknowledgers
((text-mark-interface engraver grob source-engraver)
(set! marks (cons grob marks))))
((process-acknowledged engraver)
(for-each (lambda (grob)
(when (assq-ref (ly:grob-property grob 'details) 'time-mark)
(ly:grob-set-property! grob 'text (format-time
total-time))))
marks)
(set! marks '())))))

#(define ips 24)
#(define timecode-start 10)

\layout {
\context {
\Score
\consists #Custom_engraver!!
}
}

timeMark =3D {
\tweak outside-staff-priority #1600
\tweak X-offset #-1.5
\tweak Y-offset #12
\tweak details.time-mark ##t \tweak color "red"
\textMark
"Abracadabra" \mark \default
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\header { }
\paper {
top-margin =3D 20
indent =3D 20
}
%mise en forme g=C3=A9n=C3=A9rale
\layout {
\context {
\Score
\override MetronomeMark.padding =3D #17
\override RehearsalMark.padding =3D#8
\override RehearsalMark.outside-staff-padding =3D #2
\override StaffGrouper.staff-staff-spacing.padding =3D 0
\override StaffGrouper.staff-staff-spacing.basic-distance =3D 10
}

\context {
\Voice
\override StaffGrouper.
staffgroup-staff-spacing.basic-distance =3D #0
}
\context {
\Lyrics
\override LyricText.outside-staff-padding =3D #100
}
}

% le format
rhytMicForme =3D {
\clef percussion
%\hide NoteHead
\override NoteHead.style =3D #'cross
\override NoteHead.no-ledgers =3D ##t
\override StaffSymbol.line-count =3D #1
\numericTimeSignature
\stemDown
}

Flute =3D \relative {
R1 R1 R1 R1
R2.
R1 R1 R1
}

structure =3D {
\set Score.rehearsalMarkFormatter =3D #format-mark-circle-numbers
%\override Score.RehearsalMark.padding =3D#0
\tempo 4=3D72
\timeMark
r1 \timeMark
\bar"||"
r1 \timeMark
r1 \timeMark
% \tempo 4=3D120
r1 \timeMark
\time 3/4
R2. \timeMark
\tempo 4 =3D 180
\time 4/4
r1 \timeMark
r1 \timeMark
}

rythmBarre =3D\relative {
\rhytMicForme
\time 4/4
\tweak self-alignment-X #CENTER \tweak color "red" \textMark ""<= br> c4 c c c
\repeat unfold 2 { c4 c c c }
c c c
\repeat unfold 4 { c4 c c c }
}

descriptionText =3D {
r1 \textMark\markup\bold\column{ \box"Underwater Scene" \normal-text "X" }<= br> r1 r1 r1
r4 r4
\textMark\markup\bold\column{ \box"Landscape" \normal-text "X" }
}

\score {
\new StaffGroup \with {
\override StaffGrouper
.staffgroup-staff-spacing
.basic-distance =3D 30
} <<
\new RhythmicStaff
\with { instrumentName =3D \markup\column{ "Hitpoints" "Click Track" } }
\new Voice =3D "myRhythm" \rythmBarre
\new Lyrics { \descriptionText }
\new Devnull{ \structure }
\new Staff \with { instrumentName =3D "Flute" }
{ \Flute }

\layout { }
}


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6636a3dbdef13_3334ef33a2c636431-- From MAILER-DAEMON Sun May 5 08:32:20 2024 Return-Path: Date: Sun, 05 May 2024 08:32:20 +0000 From: Olivier Charade via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Timline_pour_musique_de?= =?UTF-8?Q?_film?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_663744147e7b2_3334ef339dc642398"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30167 X-Discourse-Topic-Id: 5696 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/timline-pour-musique-de-film/5696 ----==_mimepart_663744147e7b2_3334ef339dc642398 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Super! Ca marche. Pas s=C3=BBr de tout comprendre mais =C3=A7a fait le travail. Et dans ma courte exp=C3=A9rience je n'ai jamais vu un monteur s'amuser =C3= =A0 faire d=C3=A9marrer des morceaux de films en dehors de la seconde pile. L= e d=C3=A9compte d'image, =C3=A7a vient apr=C3=A8s. --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/timline-pour-musique-de-film/5696/19). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_663744147e7b2_3334ef339dc642398 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Olivier Charade olicha
Mai 5<= /span>

Super! Ca marche.
Pas s=C3=BBr de tout comprendre mais =C3=A7a fait le travail.
Et dans ma courte exp=C3=A9rience je n'ai jamais vu un monteur s'amuser =C3= =A0 faire d=C3=A9marrer des morceaux de films en dehors de la seconde pile. L= e d=C3=A9compte d'image, =C3=A7a vient apr=C3=A8s.


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_663744147e7b2_3334ef339dc642398-- From MAILER-DAEMON Sun May 5 08:55:27 2024 Return-Path: Date: Sun, 05 May 2024 08:55:27 +0000 From: Christophe via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6637497f1d447_3334ef33a046478f8"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30168 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_6637497f1d447_3334ef33a046478f8 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour, malgr=C3=A9 les explications de Xavier, je n'arrive pas =C3=A0 cr=C3= =A9er les citations et =C3=A0 les supprimer du conducteur. Des erreurs qui n'existaient pas jusqu'alors apparaissent. Voici une partie du code (l'ensemble est un conducteur avec bois par 2, cors,= triangle, harpe et cordes). Ici, seulement fl=C3=BBtes et harpes pour l'exem= ple et la r=C3=A9solution du probl=C3=A8me. \version "2.24.1" \tagGroup #'(conducteur) \header { title =3D "Pr=C3=A9lude-V2" } global =3D { \numericTimeSignature \time 3/4 \tempo "Assez lent" 4=3D60=20 } scoreAFlute =3D \relative c'' { \global R2. *7 \tag #'part { <>^\markup { \tiny "harpe" } } \cueDuringWithClef "scoreAleft" #UP "left" { R2. } \cueDuring "scoreAright" #UP { R2. } \break r8 g'' \pp ( ~g8 d e4 ~ e4 d8 \< b a b \! e4 \> d8 g, b4~ \! b4 a8 \< g e g=20 b d! \! b4. a8 b8 ^\markup {\bold Ralenti} e, \> g2 \! ) | R2. *7 ^\markup {\bold {au Mouvt}} R2. *2 ^\markup {\bold {Ralenti}} R2. *2 ^\markup {\bold {Tr=C3=A8s lent}} 4 \pp \fermata r r \bar".." | } scoreAright =3D \relative c'' { \global % \key b \minor %%% Pour num=C3=A9ros de mesures toutes les 5 mesures au lieu de la mesure en= d=C3=A9but de ligne %%% =C3=A0 mette pour chaque partie =3D> =C3=A0 v=C3=A9rifier \override Score.BarNumber.break-visibility =3D #end-of-line-invisible % \set Score.currentBarNumber =3D #11 pour commencer le compte =C3=A0 la mes= ure 11 % Print a bar number every five measure \set Score.barNumberVisibility =3D #(every-nth-bar-number-visible 5) %{ s1 *24 s1 *24 s1 *24 s1 *24 s1 *24%} R2. \hideNotes \change Staff =3D "left" s8=20 \shape #'((-0.7 . -4)(0 . 1)(0 . 1)(0 . -0.5)) Slur \voiceOne a,,( e' g c e \change Staff =3D "right" \unHideNotes \oneVoice g8 c) ~c2 2\arpeggio r4 2 \arpeggio r4 2 \< \arpeggio r4 \! 2 r4 =20 \hideNotes \change Staff =3D "left" s8=20 \shape #'((-0.4 . -0)(0 . 3)(0 . 3)(0 . 0)) Slur \override DynamicLineSpanner.staff-padding =3D 3 \voiceOne d,\> ( a' d e fis \change Staff =3D "right" \unHideNotes \oneVoice r8 d e fis a d ) \! =20 =20 2 r4 2.=20 2 4 R2. *3 | =20 =20 << \new Voice =3D "premi=C3=A8re" \relative { \voiceOne 2 ^\markup {\bold {au Mouvt}} \arpeggio s4 =20 } \new Voice =3D "seconde" \relative { \voiceTwo \hideNotes=20 \change Staff =3D "left" s4 \voiceOne=20 \shape #'((-5 . -4)(-2 . 1)(-3 . 2.5)(1 . 0)) Slur=20 f8 ( c'8=20 \change Staff =3D "right"=20 \unHideNotes \oneVoice=20 % \stemUp \stemDown aes'4 ) } >> R2. << \new Voice =3D "premi=C3=A8re" \relative { \voiceOne 4 \arpeggio s4 s8 s8 } \new Voice =3D "seconde" \relative { \voiceTwo \hideNotes=20 \change Staff =3D "left" s4 \voiceOne=20 \shape #'((-5.8 . -17.2)(-4 . 3.5)(0 . 1)(0 . -0.3)) Slur=20 f8 ( c'8=20 \change Staff =3D "right"=20 \unHideNotes \oneVoice=20 % \stemUp g'8[ aes] ) } >> =20 R2. << \new Voice =3D "premi=C3=A8re" \relative { \voiceOne 4 \arpeggio s4 s4 } \new Voice =3D "seconde" \relative { \voiceTwo \hideNotes=20 \change Staff =3D "left" s8 \voiceOne=20 \shape #'((-2.5 . -10.5)(-2 . 1)(-2 . 2)(-3 . 0)) Slur=20 \override DynamicLineSpanner.staff-padding =3D 4 g'8 \< ( d'!8 f! b d \change Staff =3D "right"=20 \unHideNotes \oneVoice=20 % \stemUp % \stemDown r8 8 ~4 r) \! } >> =20 R2. *2 \hideNotes \change Staff =3D "left" s8=20 \shape #'((-0.1 . -5.)(0 . 1)(-0.8 . 3.5)(0 . -2)) Slur % \override DynamicLineSpanner.staff-padding =3D 4.5 \voiceOne a,,^"L.V."\>( e' b' c e \change Staff =3D "right" \unHideNotes \oneVoice b'8 c^\markup {\bold {Tr=C3=A8s lent}} e b' c4)\! =20 R2. 2. \fermata \bar".." | } scoreAleft =3D \relative c'' { \global % \key b \minor %%% Pour num=C3=A9ros de mesures toutes les 5 mesures au lieu de la mesure e= n d=C3=A9but de ligne %%% =C3=A0 mette pour chaque partie =3D> =C3=A0 v=C3=A9rifier \override Score.BarNumber.break-visibility =3D #end-of-line-invisible % \set Score.currentBarNumber =3D #11 pour commencer le compte =C3=A0 la mes= ure 11 % Print a bar number every five measure \set Score.barNumberVisibility =3D #(every-nth-bar-number-visible 5) %{ s1 *24 s1 *24 s1 *24 s1 *24 s1 *24%} =20 R2. %{ r8 \p a,, e' g c e ~ e2. ^"L.V" %} r8 \p a,, e' g c e ~e2. ^"L.V." r8 e,, (e'4) r r8 a, (e'4) r | =20 r8 e, (e'4) r r8 a, (e'4) r | =20 r8 d, a' d e fis ~ fis 2. =20 s2. *6 =20 r8 \p f8 [ \change Staff =3D "right" c' g'8] s4 \change Staff =3D "left" R2. r8 f, [ \change Staff =3D "right" c' f8] s4 \change Staff =3D "left" R2. r8 g,, d'! f! b d s2.=20 =20 R2. *2 r8 \shiftOn a,, e' b' c e=20 s2. R2. *2 \bar".." | =20 } =20 scoreAFlutePart =3D \new Staff \with { instrumentName =3D "2 fl=C3=BBtes" midiInstrument =3D "flute" % shortInstrumentName =3D "2 fl" } %\scoreAFlute=20 { \tag conducteur \set Staff.shortInstrumentName =3D "Fl" \scoreAFlute } scoreAHarpePart =3D \new PianoStaff \with { instrumentName =3D "Harpe" % shortInstrumentName =3D "Harpe" }{\tag conducteur \set PianoStaff.shortInstrumentName =3D "Hp" << \new Staff =3D "right" \with { midiInstrument =3D "orchestral harp" } \scoreAright \new Staff =3D "left" \with { midiInstrument =3D "orchestral harp" } { \clef bass \scoreAleft } >> } =20 \addQuote "scoreAright" { \scoreAright } \addQuote "scoreAleft" { \scoreAleft } \score { << =20 \new StaffGroup=20 <<=20 =20 \scoreAFlutePart \new Staff { % \removeWithTag #'part { \killCues { \scoreAHarpePart } } } =20 \scoreAHarpePart =20 \layout { =20 \context { \Staff \RemoveEmptyStaves } =20 \context { \Score =20 =20 \override StaffGrouper.staff-staff-spacing.padding =3D #3 =20 =20 }} =20 =20 \midi { \tempo 4.=3D80 }=20 } % 2 fl=C3=BBtes \bookpart { \header {subtitle =3D "2 fl=C3=BBtes"} \paper { system-separator-markup =3D ##f system-system-spacing.basic-distance =3D #25=20 } \score {\new StaffGroup { \removeWithTag conducteur <<{\scoreAFlutePart} >>} =20 =20 } =20 =20 =20 \layout {} \midi {\tempo 4=3D100}} } % Harpe \bookpart { \header {subtitle =3D "Harpe"} \paper { system-separator-markup =3D ##f system-system-spacing.basic-distance =3D #25=20 } \score {\new StaffGroup { % \removeWithTag conducteur <<{\scoreAHarpePart} >>} \layout {} \midi {\tempo 4=3D100}} } =20 Merci pour votre aide. Cordialement. Christophe --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/10). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6637497f1d447_3334ef33a046478f8 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Christophe Christophe
Mai 5<= /span>

Bonjour, malgr=C3=A9 les explications de Xavier, je n'arrive pas =C3= =A0 cr=C3=A9er les citations et =C3=A0 les supprimer du conducteur.
Des erreurs qui n'existaient pas jusqu'alors apparaissent.
Voici une partie du code (l'ensemble est un conducteur avec bois par 2, cors,= triangle, harpe et cordes). Ici, seulement fl=C3=BBtes et harpes pour l'exem= ple et la r=C3=A9solution du probl=C3=A8me.
\version "2.24.1"

\tagGroup #'(conducteur)

\header {
title =3D "Pr=C3=A9lude-V2"
}

global =3D {

\numericTimeSignature
\time 3/4
\tempo "Assez lent" 4=3D60
}

scoreAFlute =3D \relative c'' {
\global
R2. *7

\tag #'part { <>^\markup { \tiny = "harpe" } }
\cueDuringWithClef "scoreAleft" #UP "left" { R2. }
\cueDuring "scoreAright" #UP { R2. }

\break
r8 g'' \pp ( ~g8 d e4 ~
e4 d8 < b a b !
e4 > d8 g, b4~ !
b4 a8 < g e g
b d! ! b4. a8
b8 ^\markup {\bold Ralenti} e, > g2 ! ) |

R2. *7 ^\markup {\bold {au Mouvt}}
R2. *2 ^\markup {\bold {Ralenti}}
R2. *2 ^\markup {\bold {Tr=C3=A8s lent}}
4 \pp \fermata r r \bar".." |
}

scoreAright =3D \relative c'' {
\global
% \key b \minor
%%% Pour num=C3=A9ros de mesures toutes les 5 mesures au lieu de la mesure en= d=C3=A9but de ligne
%%% =C3=A0 mette pour chaque partie =3D> =C3=A0 v=C3=A9rifier
\override Score.BarNumber.break-visibility =3D #end-of-line-invisible
% \set Score.currentBarNumber =3D #11 pour commencer le compte = =C3=A0 la mesure 11
% Print a bar number every five measure
\set Score.barNumberVisibility =3D #(every-nth-bar-number-visible 5)
%{ s1 *24
s1 *24
s1 *24
s1 *24
s1 *24%}
R2.
\hideNotes \change Staff =3D "left" s8
\shape #'((-0.7 . -4)(0 . 1)(0 . 1)(0 . -0.5)) Slur
\voiceOne a,,( e' g c e \change Staff =3D "right" \unHideNotes
\oneVoice g8 c) ~c2

<d, fis b>2\arpeggio r4
2 \arpeggio r4
2 < \arpeggio r4 !
2 r4

\hideNotes \change Staff =3D "left" s8<= br> \shape #'((-0.4 . -0)(0 . 3)(0 . 3)(0 . 0)) Slur
\override DynamicLineSpanner.staff-padding =3D 3
\voiceOne d,> ( a' d e fis \change Staff =3D "right" \unHideNotes
\oneVoice r8 d e fis a d ) !

<f! a>2 r4
<f, \flageolet a\flageolet >2.
<f' a>2 <dis,\flageolet \laissezVibrer ges\flageolet\laissezVibrer = >4
R2. *3 |

<<
\new Voice =3D "premi=C3=A8re"
\relative {
\voiceOne
<g' aes c! g'>2 ^\markup {\bold {au Mouvt}} \arpeggio s4
}
\new Voice =3D "seconde"
\relative {
\voiceTwo
\hideNotes
\change Staff =3D "left" s4
\voiceOne
\shape #'((-5 . -4)(-2 . 1)(-3 . 2.5)(1 . 0)) Slur
f8 ( c'8
\change Staff =3D "right"
\unHideNotes
\oneVoice
% \stemUp
\stemDown
aes'4 )
}

R2.
<<
\new Voice =3D "premi=C3=A8re"
\relative {
\voiceOne
<g' aes c! g'>4 \arpeggio s4 s8 s8
}
\new Voice =3D "seconde"
\relative {
\voiceTwo
\hideNotes
\change Staff =3D "left" s4
\voiceOne
\shape #'((-5.8 . -17.2)(-4 . 3.5)(0 . 1)(0 . -0.3)) Slur
f8 ( c'8
\change Staff =3D "right"
\unHideNotes
\oneVoice
% \stemUp
g'8[ aes] )
}

R2.
<<
\new Voice =3D "premi=C3=A8re"
\relative {
\voiceOne
<bes d! a'>4 \arpeggio s4 s4
}
\new Voice =3D "seconde"
\relative {
\voiceTwo
\hideNotes
\change Staff =3D "left" s8
\voiceOne
\shape #'((-2.5 . -10.5)(-2 . 1)(-2 . 2)(-3 . 0)) Slur
\override DynamicLineSpanner.staff-padding =3D 4
g'8 < ( d'!8 f! b d
\change Staff =3D "right"
\unHideNotes
\oneVoice
% \stemUp
% \stemDown
r8 <bes, d>8 ~4 r) !
}

R2. *2
\hideNotes \change Staff =3D "left" s8
\shape #'((-0.1 . -5.)(0 . 1)(-0.8 . 3.5)(0 . -2)) Slur
% \override DynamicLineSpanner.staff-padding =3D 4.5
\voiceOne a,,^"L.V.">( e' b' c e \change Staff =3D "right" \unHideNotes
\oneVoice b'8 c^\markup {\bold {Tr=C3=A8s lent}} e b' c4)!

R2.
<c \flageolet e \flageolet>2. \fermata
\bar".." |
}

scoreAleft =3D \relative c'' {
\global
% \key b \minor
%%% Pour num=C3=A9ros de mesures toutes les 5 mesures au lieu de la mesure en= d=C3=A9but de ligne
%%% =C3=A0 mette pour chaque partie =3D> =C3=A0 v=C3=A9rifier
\override Score.BarNumber.break-visibility =3D #end-of-line-invisible
% \set Score.currentBarNumber =3D #11 pour commencer le compte = =C3=A0 la mesure 11
% Print a bar number every five measure
\set Score.barNumberVisibility =3D #(every-nth-bar-number-visible 5)
%{ s1 *24
s1 *24
s1 *24
s1 *24
s1 *24%}

R2.
%{ r8 \p a,, e' g c e ~
e2. ^"L.V" %}
r8 \p a,, e' g c e ~e2. ^"L.V."

r8 e,, (e'4) r
r8 a, (e'4) r |

r8 e, (e'4) r
r8 a, (e'4) r |

r8 d, a' d e fis ~ fis 2.

s2. *6

r8 \p f8 [ \change Staff =3D "right" c'= g'8] s4
\change Staff =3D "left"
R2.
r8 f, [ \change Staff =3D "right" c' f8] s4
\change Staff =3D "left"
R2.
r8 g,, d'! f! b d
s2.

R2. *2
r8 \shiftOn a,, e' b' c e
s2.
R2. *2
\bar".." |

}

scoreAFlutePart =3D \new Staff \with {<= br> instrumentName =3D "2 fl=C3=BBtes"
midiInstrument =3D "flute"
% shortInstrumentName =3D "2 fl"
} %\scoreAFlute
{ \tag conducteur \set Staff.shortInstrumentName =3D "Fl"

\scoreAFlute
}

scoreAHarpePart =3D \new PianoStaff \wi= th {
instrumentName =3D "Harpe"
% shortInstrumentName =3D "Harpe"
}{\tag conducteur \set PianoStaff.shortInstrumentName =3D "Hp"
<<
\new Staff =3D "right" \with {
midiInstrument =3D "orchestral harp"
} \scoreAright
\new Staff =3D "left" \with {
midiInstrument =3D "orchestral harp"
} { \clef bass \scoreAleft }

}

\addQuote "scoreAright" { \scoreAright = }
\addQuote "scoreAleft" { \scoreAleft }

\score {
<<

\new StaffGroup=20
<<=20
 =20
\scoreAFlutePart
\new Staff {

% \removeWithTag #'part { \killCues {= \scoreAHarpePart } }
}

\scoreAHarpePart

 \layout {

\context {
\Staff \RemoveEmptyStaves }

\context {
\Score

\override StaffGrouper.staff-s=
taff-spacing.padding =3D #3

}}

\midi {
\tempo 4.=3D80 }
}

% 2 fl=C3=BBtes
\bookpart {
\header {subtitle =3D "2 fl=C3=BBtes"}
\paper {
system-separator-markup =3D ##f
system-system-spacing.basic-distance =3D #25
}
\score {\new StaffGroup {
\removeWithTag conducteur <<{\scoreAFlutePart} >>}

}

       \layout {}
       \midi {\tempo 4=3D100}}

}

% Harpe
\bookpart {
\header {subtitle =3D "Harpe"}
\paper {
system-separator-markup =3D ##f
system-system-spacing.basic-distance =3D #25
}
\score {\new StaffGroup {
% \removeWithTag conducteur <<{\scoreAHarpePart} >>}
\layout {}
\midi {\tempo 4=3D100}}
}

Merci pour votre aide.
Cordialement.
Christophe


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6637497f1d447_3334ef33a046478f8-- From MAILER-DAEMON Sun May 5 13:22:36 2024 Return-Path: Date: Sun, 05 May 2024 13:22:36 +0000 From: Olivier Charade via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Timline_pour_musique_de?= =?UTF-8?Q?_film?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6637881c3222c_3334ef339dc6538eb"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30169 X-Discourse-Topic-Id: 5696 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/timline-pour-musique-de-film/5696 ----==_mimepart_6637881c3222c_3334ef339dc6538eb Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Question, car je suis loin de comprendre tout ce qui se passe dans la fonctio= n de Jean. Est-ce qu'il y a un suivi continu du temps =C3=A9coul=C3=A9 en interne =C3=A0= Lilypond ou dois-je penser =C3=A0 mettre un \timeMark =C3=A0 chaque changeme= nt de tempo pour que celui-ci soit pris en compte? --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/timline-pour-musique-de-film/5696/20). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6637881c3222c_3334ef339dc6538eb Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Olivier Charade olicha
Mai 5<= /span>

Question, car je suis loin de comprendre tout ce qui se passe dans la = fonction de Jean.
Est-ce qu'il y a un suivi continu du temps =C3=A9coul=C3=A9 en interne =C3=A0= Lilypond ou dois-je penser =C3=A0 mettre un \timeMark =C3=A0 chaque changeme= nt de tempo pour que celui-ci soit pris en compte?


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6637881c3222c_3334ef339dc6538eb-- From MAILER-DAEMON Sun May 5 16:10:07 2024 Return-Path: Date: Sun, 05 May 2024 16:10:07 +0000 From: Christophe via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6637af5f7f643_3334ef33a18659355"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30170 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_6637af5f7f643_3334ef33a18659355 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Et avec tag seul ? Une solution plus simple est-elle possible ? Je suis =C3=A0 l'arr=C3=AAt complet malheureusement. Merci pour votre aide. --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/11). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6637af5f7f643_3334ef33a18659355 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Christophe Christophe
Mai 5<= /span>

Et avec tag seul ? Une solution plus simple est-elle possible ?
Je suis =C3=A0 l'arr=C3=AAt complet malheureusement.
Merci pour votre aide.


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6637af5f7f643_3334ef33a18659355-- From MAILER-DAEMON Mon May 6 12:29:51 2024 Return-Path: Date: Mon, 06 May 2024 12:29:51 +0000 From: Gilles via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Clef_que_ne_s'affiche_pas?= =?UTF-8?Q?_correctement_avec_une_acciaccatura,_grace_ou_appoggiatura...?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6638cd3ef2fa3_3334ef33a046647d5"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30171 X-Discourse-Topic-Id: 5702 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/clef-que-ne-saffiche-pas-correctement-avec-une-acciaccatura-grace-ou-appoggiatura/5702 ----==_mimepart_6638cd3ef2fa3_3334ef33a046647d5 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour ! Sans l'acciaccatura la clef de Fa s'affiche correctement, mais avec= ... Peut-=C3=AAtre est-ce une erreur connue !!! \version "2.24.3" \score { << \relative c'' { \new Staff {=20 \clef treble g1 } } \relative c { \new Staff { \clef bass g1 } } >> \layout {} } \score { << \relative c'' { \new Staff {=20 \clef treble \acciaccatura f16 g1 } } \relative c { \new Staff { \clef bass g1 } } >> \layout {} } --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/clef-que-ne-saffiche-pas-correctement-avec-une-acciaccatura-grace-ou-ap= poggiatura/5702/1). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6638cd3ef2fa3_3334ef33a046647d5 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Gilles Yagloops
Mai 6<= /span>

Bonjour ! Sans l'acciaccatura la clef de Fa s'affiche correctement, ma= is avec...
Peut-=C3=AAtre est-ce une erreur connue !!!

\version "2.24.3"

\score {
<<
\relative c'' {
\new Staff {
\clef treble
g1
}
}
\relative c {
\new Staff {
\clef bass
g1
}
}

\layout {}
}

\score {
<<
\relative c'' {
\new Staff {
\clef treble
\acciaccatura f16 g1
}
}
\relative c {
\new Staff {
\clef bass
g1
}
}

\layout {}
}


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6638cd3ef2fa3_3334ef33a046647d5-- From MAILER-DAEMON Mon May 6 12:34:47 2024 Return-Path: Date: Mon, 06 May 2024 12:34:47 +0000 From: Jean-Julien Fleck via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Clef_que_ne_s'affiche_pas?= =?UTF-8?Q?_correctement_avec_une_acciaccatura,_grace_ou_appoggiatura...?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6638ce671af37_3334ef33a18670177"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30172 X-Discourse-Topic-Id: 5702 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/clef-que-ne-saffiche-pas-correctement-avec-une-acciaccatura-grace-ou-appoggiatura/5702 ----==_mimepart_6638ce671af37_3334ef33a18670177 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Oui, c'est un bug assez ancien dont je ne me souviens plus le num=C3=A9ro. Il= suffit de mettre des `\grace` avec des `s` dans toutes les voix: ``` \score { << \relative c'' { \new Staff { \clef treble \acciaccatura {f16} g1 } } \relative c { \new Staff { \clef bass \grace {s16} % <-- Ici g1 } } >> } ``` --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/clef-que-ne-saffiche-pas-correctement-avec-une-acciaccatura-grace-ou-ap= poggiatura/5702/2). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6638ce671af37_3334ef33a18670177 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Jean-Julien Fleck jjfPCSI1
Mai 6<= /span>

Oui, c'est un bug assez ancien dont je ne me souviens plus le num=C3= =A9ro. Il suffit de mettre des \grace avec des s dans toutes les voix:

\score {
<<
\relative c'' {
\new Staff {
\clef treble
\acciaccatura {f16} g1
}
}
\relative c {
\new Staff {
\clef bass
\grace {s16}   % <-- Ici
g1
}
}
>>
}

Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6638ce671af37_3334ef33a18670177-- From MAILER-DAEMON Mon May 6 12:37:59 2024 Return-Path: Date: Mon, 06 May 2024 12:37:59 +0000 From: Gilles via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Clef_que_ne_s'affiche_pas?= =?UTF-8?Q?_correctement_avec_une_acciaccatura,_grace_ou_appoggiatura...?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6638cf26eed03_3334ef33a0467598a"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30173 X-Discourse-Topic-Id: 5702 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/clef-que-ne-saffiche-pas-correctement-avec-une-acciaccatura-grace-ou-appoggiatura/5702 ----==_mimepart_6638cf26eed03_3334ef33a0467598a Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Super Merci ! --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/clef-que-ne-saffiche-pas-correctement-avec-une-acciaccatura-grace-ou-ap= poggiatura/5702/3). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6638cf26eed03_3334ef33a0467598a Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Gilles Yagloops
Mai 6<= /span>

Super Merci !


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6638cf26eed03_3334ef33a0467598a-- From MAILER-DAEMON Mon May 6 14:26:28 2024 Return-Path: Date: Mon, 06 May 2024 14:26:28 +0000 From: Christophe via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Position_d'un_silence?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6638e893e928b_3334ef33a2c681484"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30174 X-Discourse-Topic-Id: 5703 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/position-dun-silence/5703 ----==_mimepart_6638e893e928b_3334ef33a2c681484 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour, pour positionner un soupir, il suffit de mentionner g4\rest. Mais comment avoir le m=C3=AAme r=C3=A9sultat avec un silence d'une mesure co= mme R2. ? Merci. Cordialement. Christophe --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/position-dun-silence/5703/1). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6638e893e928b_3334ef33a2c681484 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Christophe Christophe
Mai 6<= /span>

Bonjour, pour positionner un soupir, il suffit de mentionner g4\rest.<= br> Mais comment avoir le m=C3=AAme r=C3=A9sultat avec un silence d'une mesure co= mme R2. ?
Merci.
Cordialement.
Christophe


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6638e893e928b_3334ef33a2c681484-- From MAILER-DAEMON Mon May 6 14:55:26 2024 Return-Path: Date: Mon, 06 May 2024 14:55:26 +0000 From: Christophe via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6638ef5e691e6_3334ef33a04686984"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30175 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_6638ef5e691e6_3334ef33a04686984 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour, Ma question reste sans r=C3=A9ponse.=20 Je trouve que l'usage de Lilypond est tr=C3=A8s compliqu=C3=A9 du coup. J'essaie de trouver une solution de secours en =C3=A9crivant le conducteur d'= un c=C3=B4t=C3=A9 puis en modifiant les parties s=C3=A9par=C3=A9es d'un autre= . J'utilise \new CueVoice qui est facile =C3=A0 mettre en =C5=93uvre pour le= s parties s=C3=A9par=C3=A9es. Oui, mais m=C3=AAme ainsi, il est impossible de l'int=C3=A9grer =C3=A0 un con= texte de 2 voix comme celui-ci sans avoir 50 lignes d'erreurs : <\new Voice =3D "premi=C3=A8re" \relative {\voiceOne r4 r r8 (\stemDown g''=20 g2^\markup {\bold {au Mouvt}} \p f4 \break \stemNeutral a,!4. \stemUp c!= 8=20 \stemNeutral a4 g'4. f8 g c, a4. \stemUp c!8 \stemNeutral a4) } \new Voice =3D "seconde" \relative {\voiceTwo s2. s dis'4. d!8 dis4 s2. dis4. d!8 dis4 }>>=20 Est-ce les limites de Lilypond ? Les miennes c'est s=C3=BBr ! Pour fournir la partition demain, je suis bien en peine. Cordialement. Christophe --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/12). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6638ef5e691e6_3334ef33a04686984 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Christophe Christophe
Mai 6<= /span>

Bonjour,
Ma question reste sans r=C3=A9ponse.
Je trouve que l'usage de Lilypond est tr=C3=A8s compliqu=C3=A9 du coup.
J'essaie de trouver une solution de secours en =C3=A9crivant le conducteur d'= un c=C3=B4t=C3=A9 puis en modifiant les parties s=C3=A9par=C3=A9es d'un autre= . J'utilise \new CueVoice qui est facile =C3=A0 mettre en =C5=93uvre pour le= s parties s=C3=A9par=C3=A9es.
Oui, mais m=C3=AAme ainsi, il est impossible de l'int=C3=A9grer =C3=A0 un con= texte de 2 voix comme celui-ci sans avoir 50 lignes d'erreurs :
<\new Voice =3D "premi=C3=A8re"
\relative {\voiceOne r4 r r8 (\stemDown g''
g2^\markup {\bold {au Mouvt}} \p f4 \break \stemNeutral a,!4. \stemUp c!8=
\stemNeutral a4 g'4. f8 g c, a4. \stemUp c!8 \stemNeutral a4) }
\new Voice =3D "seconde"
\relative {\voiceTwo s2. s dis'4. d!8 dis4 s2. dis4. d!8 dis4 }>>

Est-ce les limites de Lilypond ? Les mi= ennes c'est s=C3=BBr !
Pour fournir la partition demain, je suis bien en peine.
Cordialement.
Christophe


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6638ef5e691e6_3334ef33a04686984-- From MAILER-DAEMON Mon May 6 15:07:24 2024 Return-Path: Date: Mon, 06 May 2024 15:07:24 +0000 From: Christophe via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6638f22c56ee4_3334ef339f06924e"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30176 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_6638f22c56ee4_3334ef339f06924e Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 De m=C3=AAme, =C3=A9crire une citation dans une partie de percussion pour que= la port=C3=A9e apparaisse ... --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/13). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6638f22c56ee4_3334ef339f06924e Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Christophe Christophe
Mai 6<= /span>

De m=C3=AAme, =C3=A9crire une citation dans une partie de percussion p= our que la port=C3=A9e apparaisse ...


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6638f22c56ee4_3334ef339f06924e-- From MAILER-DAEMON Mon May 6 15:42:22 2024 Return-Path: Date: Mon, 06 May 2024 15:42:21 +0000 From: MartialR via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Position_d'un_silence?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6638fa5daf84e_3334ef33a2c6979f2"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30177 X-Discourse-Topic-Id: 5703 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/position-dun-silence/5703 ----==_mimepart_6638fa5daf84e_3334ef33a2c6979f2 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour, avec MultiMeasureRest.staff-position=20 Ponctuellement avec tweak=20 Danstoute la port=C3=A9e \override=20 ``` \relative c' { c1 \tweak MultiMeasureRest.staff-position #0 R1=20 \override Staff.MultiMeasureRest.staff-position =3D #-2 R1 c' R1 } ``` Cordialement --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/position-dun-silence/5703/2). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6638fa5daf84e_3334ef33a2c6979f2 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
MartialR
Mai 6<= /span>

Bonjour,
avec MultiMeasureRest.staff-position
Ponctuellement avec tweak
Danstoute la port=C3=A9e \override

\relative c' {
  c1
\tweak MultiMeasureRest.staff-position #0  R1=20

\override Staff.MultiMeasureRest.staff-position =3D #-2
R1
c'
R1
}

Cordialement


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6638fa5daf84e_3334ef33a2c6979f2-- From MAILER-DAEMON Mon May 6 16:08:12 2024 Return-Path: Date: Mon, 06 May 2024 16:08:12 +0000 From: Christophe via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Position_d'un_silence?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6639006c1a7af_3334ef339f07034ba"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30178 X-Discourse-Topic-Id: 5703 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/position-dun-silence/5703 ----==_mimepart_6639006c1a7af_3334ef339f07034ba Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Merci Martial, C'est ce que je cherchais. C'est r=C3=A9solu. Cordialement. Christophe --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/position-dun-silence/5703/3). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6639006c1a7af_3334ef339f07034ba Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Christophe Christophe
Mai 6<= /span>

Merci Martial,
C'est ce que je cherchais.
C'est r=C3=A9solu.
Cordialement.
Christophe


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6639006c1a7af_3334ef339f07034ba-- From MAILER-DAEMON Mon May 6 18:54:04 2024 Return-Path: Date: Mon, 06 May 2024 18:54:04 +0000 From: Christophe via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6639274c3d715_3334ef33a2c709188"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30179 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_6639274c3d715_3334ef33a2c709188 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Pour r=C3=A9sumer mes difficult=C3=A9s, je souhaite faciliter le travail des = musiciens en notant dans leurs partitions individuelles les r=C3=A9pliques (c= itations ou =C3=A0 d=C3=A9faut) des autres instruments juste avant leur entr= =C3=A9e. Les contextes de ces citations peuvent =C3=AAtre diff=C3=A9rents si l'instrum= ent =C3=A0 r=C3=A9pliquer est monodique ou polyphonique (harpe ou piano o=C3= =B9 les notes passent de la main gauche =C3=A0 la main droite) ou encore aide= r le percussionniste qui doit partir apr=C3=A8s un nombre consid=C3=A9rable d= e mesures =C3=A0 compter. D'autant que ces citations si elles sont tr=C3=A8s utiles pour le musicien n'= ont pas leur int=C3=A9r=C3=AAt dans le conducteur. Je n'arrive pas pour l'instant =C3=A0 utiliser des commandes qui finalisent m= on intention dans ces diff=C3=A9rents contextes.=20 Merci d'avance =C3=A0 ceux qui pourront m'accompagner dans la compr=C3=A9hens= ion du principe et dans la r=C3=A9solution de ce probl=C3=A8me. Qui me sera u= tile tr=C3=A8s tr=C3=A8s souvent. Cordialement. Christophe --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/14). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6639274c3d715_3334ef33a2c709188 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Christophe Christophe
Mai 6<= /span>

Pour r=C3=A9sumer mes difficult=C3=A9s, je souhaite faciliter le trava= il des musiciens en notant dans leurs partitions individuelles les r=C3=A9pli= ques (citations ou =C3=A0 d=C3=A9faut) des autres instruments juste avant leu= r entr=C3=A9e.
Les contextes de ces citations peuvent =C3=AAtre diff=C3=A9rents si l'instrum= ent =C3=A0 r=C3=A9pliquer est monodique ou polyphonique (harpe ou piano o=C3= =B9 les notes passent de la main gauche =C3=A0 la main droite) ou encore aide= r le percussionniste qui doit partir apr=C3=A8s un nombre consid=C3=A9rable d= e mesures =C3=A0 compter.
D'autant que ces citations si elles sont tr=C3=A8s utiles pour le musicien n'= ont pas leur int=C3=A9r=C3=AAt dans le conducteur.
Je n'arrive pas pour l'instant =C3=A0 utiliser des commandes qui finalisent m= on intention dans ces diff=C3=A9rents contextes.
Merci d'avance =C3=A0 ceux qui pourront m'accompagner dans la compr=C3=A9hens= ion du principe et dans la r=C3=A9solution de ce probl=C3=A8me. Qui me sera u= tile tr=C3=A8s tr=C3=A8s souvent.
Cordialement.
Christophe


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6639274c3d715_3334ef33a2c709188-- From MAILER-DAEMON Mon May 6 20:40:45 2024 Return-Path: Date: Mon, 06 May 2024 20:40:45 +0000 From: Michel via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6639404d6cdef_3334ef33a047147e4"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30181 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_6639404d6cdef_3334ef33a047147e4 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour Christophe. J'ai eu l'occasion il y a quelques ann=C3=A9es de me frotter au m=C3=AAme pro= bl=C3=A8me. Voici ma solution. J'utilise toujours plusieurs fichiers: - un "global" regroupant les constantes: titre, compositeur, variables divers= es pour =C3=A9viter les commandes =C3=A0 rallonge, section \paper. - une trame pour le nombre de mesures, les tonalit=C3=A9s etc... 1 section pa= r mouvement, r=C3=A9cup=C3=A9r=C3=A9e =C3=A0 l'aide de \tag. - un fichier par instrument comportant les notes et nuances, et les citations= filtr=C3=A9es avec des \tag - un fichier par instrument regroupant par \include les diff=C3=A9rents fichi= ers pr=C3=A9c=C3=A9dents. - un fichier score pour le conducteur Je joins un fichier zip du code de l'El=C3=A9gie de Faur=C3=A9 pour violoncel= le et orchestre accessible via ce lien: https://1drv.ms/u/s!Au1RvPkxw094hI9pG= uSkInv9_N8-Ng?e=3D3MTI64 C'est en 2.18.2 (c'=C3=A9tait en 2019). Il n'est pas forc=C3=A9ment utile de= le convertir, cela risque d'=C3=AAtre un peu compliqu=C3=A9 pour certaines f= onctions. Mais cela pourra te permettre de comprendre ma d=C3=A9marche et de = l'adapter =C3=A0 tes besoins. Michel --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/15). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6639404d6cdef_3334ef33a047147e4 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Michel Philhar
Mai 6<= /span>

Bonjour Christophe.

J'ai eu l'occasion il y a quelques ann= =C3=A9es de me frotter au m=C3=AAme probl=C3=A8me.
Voici ma solution. J'utilise toujours plusieurs fichiers:

  • un "global" regroupant les constantes: tit= re, compositeur, variables diverses pour =C3=A9viter les commandes =C3=A0 ral= longe, section \paper.
  • une trame pour le nombre de mesures, les t= onalit=C3=A9s etc... 1 section par mouvement, r=C3=A9cup=C3=A9r=C3=A9e =C3=A0= l'aide de \tag.
  • un fichier par instrument comportant les n= otes et nuances, et les citations filtr=C3=A9es avec des \tag
  • un fichier par instrument regroupant par \= include les diff=C3=A9rents fichiers pr=C3=A9c=C3=A9dents.
  • un fichier score pour le conducteur

Je joins un fichier zip du code de l'El= =C3=A9gie de Faur=C3=A9 pour violoncelle et orchestre accessible via ce lien:= https://1drv.ms/u/s!Au1RvPkxw094hI9pGuSkInv9_N8-Ng?e=3D3MT= I64
C'est en 2.18.2 (c'=C3=A9tait en 2019). Il n'est pas forc=C3=A9ment utile de = le convertir, cela risque d'=C3=AAtre un peu compliqu=C3=A9 pour certaines fo= nctions. Mais cela pourra te permettre de comprendre ma d=C3=A9marche et de l= 'adapter =C3=A0 tes besoins.

Michel


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6639404d6cdef_3334ef33a047147e4-- From MAILER-DAEMON Mon May 6 23:30:35 2024 Return-Path: Date: Mon, 06 May 2024 23:30:35 +0000 From: Jean Abou Samra via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Lien_Guide_d'extension?= =?UTF-8?Q?_sur_lilypond_community?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6639681b8ead1_3334ef33a04720327"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30182 X-Discourse-Topic-Id: 5701 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/lien-guide-dextension-sur-lilypond-community/5701 ----==_mimepart_6639681b8ead1_3334ef33a04720327 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Pas faux. Je viens de l'ajouter. --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/lien-guide-dextension-sur-lilypond-community/5701/2). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6639681b8ead1_3334ef33a04720327 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Jean Abou Samra jeanas
Mai 6<= /span>

Pas faux. Je viens de l'ajouter.


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6639681b8ead1_3334ef33a04720327-- From MAILER-DAEMON Mon May 6 23:49:09 2024 Return-Path: Date: Mon, 06 May 2024 23:49:09 +0000 From: Jean Abou Samra via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Timline_pour_musique_de?= =?UTF-8?Q?_film?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_66396c7535e07_3334ef339f07257f8"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30183 X-Discourse-Topic-Id: 5696 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/timline-pour-musique-de-film/5696 ----==_mimepart_66396c7535e07_3334ef339f07257f8 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Pour forcer le "time code" =C3=A0 un moment donn=C3=A9, on peut faire ce genr= e de choses : ``` \version "2.24" ips =3D 24 #(set-object-property! 'forcedTimeCode 'translation-type? rational?) forceTimeCode =3D #(define-music-function (hours minutes seconds frame) (integer? integer? inte= ger? integer?) #{ \once \set Score.forcedTimeCode =3D #(+ (* 3600 hours) (* 60 minutes) s= econds (/ frame ips)) #}) #(define (Custom_engraver!! context) (define (format-time seconds) (let* ((heures (euclidean-quotient seconds 3600)) (resta (euclidean-remainder seconds 3600)) (minutes (euclidean-quotient resta 60)) (restb (euclidean-remainder resta 60)) (seconds (euclidean-quotient restb 1)) (restc (euclidean-remainder restb 1))) (format #f "~2,'0d:~2,'0d:~2,'0d.~2,'0d" heures minutes seconds (round= (* restc ips))))) (let ((wholes-per-minute 15) (last-time ZERO-MOMENT) (total-time 0) (marks '())) (make-engraver ((process-music engraver) (let* ((new-time (ly:context-current-moment context)) (time-delta (ly:moment-main (ly:moment-sub new-time last-time))) (new-wholes-per-minute (and=3D> (ly:context-property context 'tempoWholesPerMinute #f) ly:moment-main)) (forced-time-code (ly:context-property context 'forcedTimeCode = #f))) (set! total-time (or forced-time-code (+ total-time (* 60 (/ time-delta wholes-= per-minute))))) (set! last-time new-time) (when new-wholes-per-minute (set! wholes-per-minute new-wholes-per-minute)))) (acknowledgers ((text-mark-interface engraver grob source-engraver) (set! marks (cons grob marks)))) ((process-acknowledged engraver) (for-each (lambda (grob) (when (assq-ref (ly:grob-property grob 'details) 'time-mar= k) (ly:grob-set-property! grob 'text (format-time total-time)))) marks) (set! marks '()))))) \layout { \context { \Score \consists #Custom_engraver!! } } timeMark =3D { \tweak outside-staff-priority #1600 \tweak X-offset #-1.5 \tweak Y-offset #12 \tweak details.time-mark ##t \tweak color "red" \textMark "Abracadabra" \mark \default } %%%%%%%%%%%%%%%%%%%%%%%%%%%% \header { } \paper { top-margin =3D 20 indent =3D 20 } %mise en forme g=C3=A9n=C3=A9rale \layout { \context { \Score \override MetronomeMark.padding =3D #17 \override RehearsalMark.padding =3D#8 \override RehearsalMark.outside-staff-padding =3D #2 \override StaffGrouper.staff-staff-spacing.padding =3D 0 \override StaffGrouper.staff-staff-spacing.basic-distance =3D 10 } \context { \Voice \override StaffGrouper. staffgroup-staff-spacing.basic-distance =3D #0 } \context { \Lyrics \override LyricText.outside-staff-padding =3D #100 } } % le format rhytMicForme =3D { \clef percussion %\hide NoteHead \override NoteHead.style =3D #'cross \override NoteHead.no-ledgers =3D ##t \override StaffSymbol.line-count =3D #1 \numericTimeSignature \stemDown } Flute =3D \relative { R1 R1 R1 R1 R2. R1 R1 R1 } structure =3D { \set Score.rehearsalMarkFormatter =3D #format-mark-circle-numbers %\override Score.RehearsalMark.padding =3D#0 \tempo 4=3D72 \forceTimeCode 0 0 2 0 \timeMark r1 \timeMark \bar"||" r1 \timeMark r1 \timeMark % \tempo 4=3D120 r1 \timeMark \time 3/4 R2. \forceTimeCode 0 0 30 2 \timeMark \tempo 4 =3D 180 \time 4/4 r1 \timeMark r1 \timeMark } rythmBarre =3D\relative { \rhytMicForme \time 4/4 \tweak self-alignment-X #CENTER \tweak color "red" \textMark "" c4 c c c \repeat unfold 2 { c4 c c c } c c c \repeat unfold 4 { c4 c c c } } descriptionText =3D { r1 \textMark\markup\bold\column{ \box"Underwater Scene" \normal-text "X" } r1 r1 r1 r4 r4 \textMark\markup\bold\column{ \box"Landscape" \normal-text "X" } } \score { \new StaffGroup \with { \override StaffGrouper .staffgroup-staff-spacing .basic-distance =3D 30 } << \new RhythmicStaff \with { instrumentName =3D \markup\column{ "Hitpoints" "Click Track" } } \new Voice =3D "myRhythm" \rythmBarre \new Lyrics { \descriptionText } \new Devnull{ \structure } \new Staff \with { instrumentName =3D "Flute" } { \Flute } >> \layout { } } ``` [quote=3D"olicha, post:20, topic:5696"] Est-ce qu'il y a un suivi continu du temps =C3=A9coul=C3=A9 en interne =C3=A0= Lilypond ou dois-je penser =C3=A0 mettre un \timeMark =C3=A0 chaque changeme= nt de tempo pour que celui-ci soit pris en compte? [/quote] Normalement, =C3=A7a devrait marcher sans. --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/timline-pour-musique-de-film/5696/21). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_66396c7535e07_3334ef339f07257f8 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Jean Abou Samra jeanas
Mai 6<= /span>

Pour forcer le "time code" =C3=A0 un moment donn=C3=A9, on peut faire = ce genre de choses :

\version "2.24"

ips =3D 24


#(set-object-property! 'forcedTimeCode 'translation-type? rational?)

forceTimeCode =3D
#(define-music-function (hours minutes seconds frame) (integer? integer? inte=
ger? integer?)
   #{ \once \set Score.forcedTimeCode =3D #(+ (* 3600 hours) (* 60 minutes) s=
econds (/ frame ips)) #})

#(define (Custom_engraver!! context)
  (define (format-time seconds)
     (let* ((heures (euclidean-quotient seconds 3600))
            (resta (euclidean-remainder seconds 3600))
            (minutes (euclidean-quotient resta 60))
            (restb (euclidean-remainder resta 60))
            (seconds (euclidean-quotient restb 1))
            (restc (euclidean-remainder restb 1)))
       (format #f "~2,'0d:~2,'0d:~2,'0d.~2,'0d" heures minutes seconds (round=
 (* restc ips)))))
   (let ((wholes-per-minute 15)
         (last-time ZERO-MOMENT)
         (total-time 0)
         (marks '()))
     (make-engraver
      ((process-music engraver)
       (let* ((new-time (ly:context-current-moment context))
              (time-delta (ly:moment-main (ly:moment-sub new-time last-time)))
              (new-wholes-per-minute
               (and=3D> (ly:context-property context 'tempoWholesPerMinute=
 #f)
                      ly:moment-main))
              (forced-time-code (ly:context-property context 'forcedTimeCode =
#f)))
         (set! total-time
               (or forced-time-code (+ total-time (* 60 (/ time-delta wholes-=
per-minute)))))
         (set! last-time new-time)
         (when new-wholes-per-minute
           (set! wholes-per-minute new-wholes-per-minute))))
      (acknowledgers
       ((text-mark-interface engraver grob source-engraver)
        (set! marks (cons grob marks))))
      ((process-acknowledged engraver)
       (for-each (lambda (grob)
                   (when (assq-ref (ly:grob-property grob 'details) 'time-mar=
k)
                     (ly:grob-set-property! grob 'text (format-time
                                                        total-time))))
                 marks)
       (set! marks '())))))

\layout {
  \context {
    \Score
    \consists #Custom_engraver!!
  }
}


timeMark =3D  {
  \tweak outside-staff-priority #1600
  \tweak X-offset #-1.5
  \tweak Y-offset #12
  \tweak details.time-mark ##t \tweak color "red"
  \textMark
  "Abracadabra" \mark \default
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\header {  }
\paper {
  top-margin =3D 20
  indent =3D  20
}
%mise en forme g=C3=A9n=C3=A9rale
\layout {
  \context {
    \Score
    \override MetronomeMark.padding =3D #17
    \override RehearsalMark.padding =3D#8
    \override RehearsalMark.outside-staff-padding =3D #2
    \override StaffGrouper.staff-staff-spacing.padding =3D 0
    \override StaffGrouper.staff-staff-spacing.basic-distance =3D 10
  }

  \context {
    \Voice
    \override StaffGrouper.
    staffgroup-staff-spacing.basic-distance =3D #0
  }
  \context {
    \Lyrics
    \override LyricText.outside-staff-padding =3D #100
  }
}

% le format
rhytMicForme =3D {
  \clef percussion
  %\hide NoteHead
  \override NoteHead.style =3D #'cross
  \override NoteHead.no-ledgers =3D ##t
  \override StaffSymbol.line-count =3D #1
  \numericTimeSignature
  \stemDown
}

Flute =3D \relative {
  R1 R1 R1 R1
  R2.
  R1 R1 R1
}

structure =3D {
  \set Score.rehearsalMarkFormatter =3D #format-mark-circle-numbers
  %\override Score.RehearsalMark.padding =3D#0
  \tempo 4=3D72
  \forceTimeCode 0 0 2 0
  \timeMark
  r1 \timeMark
  \bar"||"
  r1 \timeMark
  r1 \timeMark
  % \tempo 4=3D120
  r1  \timeMark
  \time 3/4
  R2.
  \forceTimeCode 0 0 30 2
  \timeMark
  \tempo 4 =3D 180
  \time 4/4
  r1 \timeMark
  r1 \timeMark
}

rythmBarre =3D\relative {
  \rhytMicForme
  \time 4/4
  \tweak self-alignment-X #CENTER \tweak color "red" \textMark ""
  c4 c c c
  \repeat unfold 2 {  c4  c c c  }
  c c  c
  \repeat unfold 4 {  c4  c c c  }
}

descriptionText =3D {
  r1  \textMark\markup\bold\column{ \box"Underwater Scene"  \normal-text "X" }
  r1  r1 r1
  r4 r4
  \textMark\markup\bold\column{ \box"Landscape"  \normal-text "X" }
}

\score {
  \new StaffGroup \with {
    \override StaffGrouper
    .staffgroup-staff-spacing
    .basic-distance =3D 30
  } <<
    \new RhythmicStaff
    \with { instrumentName =3D \markup\column{ "Hitpoints" "Click Track" }  }
    \new Voice =3D "myRhythm" \rythmBarre
    \new Lyrics { \descriptionText }
    \new  Devnull{ \structure }
    \new Staff \with { instrumentName =3D "Flute" }
    { \Flute }
  >>
  \layout { }
}
3D"" olicha:

Est-ce qu'il y a un suivi continu du temps =C3=A9cou= l=C3=A9 en interne =C3=A0 Lilypond ou dois-je penser =C3=A0 mettre un \timeMa= rk =C3=A0 chaque changement de tempo pour que celui-ci soit pris en compte?

Normalement, =C3=A7a devrait marcher sa= ns.


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_66396c7535e07_3334ef339f07257f8-- From MAILER-DAEMON Tue May 7 00:31:32 2024 Return-Path: Date: Tue, 07 May 2024 00:31:32 +0000 From: Jean Abou Samra via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6639766432650_3334ef33a2c731392"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30184 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_6639766432650_3334ef33a2c731392 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Pas le temps de faire plus vu l'heure, mais le probl=C3=A8me principal dans c= et exemple, ce sont tout b=C3=AAtement des `}` et `>>` oubli=C3=A9s ou mal pl= ac=C3=A9s. =C3=87a va d=C3=A9j=C3=A0 nettement mieux comme =C3=A7a, j'ai aussi r=C3=A9in= dent=C3=A9, fait quelques simplifications et rajout=C3=A9 le `\killCues` manq= uant entre autres : ``` \version "2.24.1" \tagGroup #'(conducteur) \header { title =3D "Pr=C3=A9lude-V2" } global =3D { \numericTimeSignature \time 3/4 \tempo "Assez lent" 4 =3D 60 } scoreAFlute =3D \relative c'' { \global R2.*7 \tag #'part { <>^\markup { \tiny "harpe" } } \cueDuringWithClef "scoreAleft" #UP "bass" { R2. } \cueDuring "scoreAright" #UP { R2. } \break r8 g'' \pp ( ~g8 d e4 ~ e4 d8 \< b a b \! e4 \> d8 g, b4~ \! b4 a8 \< g e g=20 b d! \! b4. a8 b8 ^\markup {\bold Ralenti} e, \> g2 \! ) | R2. *7 ^\markup {\bold {au Mouvt}} R2. *2 ^\markup {\bold {Ralenti}} R2. *2 ^\markup {\bold {Tr=C3=A8s lent}} 4 \pp \fermata r r \bar".." | } scoreAright =3D \relative c'' { \global R2. \hideNotes \change Staff =3D "left" s8=20 \shape #'((-0.7 . -4)(0 . 1)(0 . 1)(0 . -0.5)) Slur \voiceOne a,,( e' g c e \change Staff =3D "right" \unHideNotes \oneVoice g8 c) ~c2 2\arpeggio r4 2 \arpeggio r4 2 \< \arpeggio r4 \! 2 r4 =20 \hideNotes \change Staff =3D "left" s8=20 \shape #'((-0.4 . -0)(0 . 3)(0 . 3)(0 . 0)) Slur \override DynamicLineSpanner.staff-padding =3D 3 \voiceOne d,\> ( a' d e fis \change Staff =3D "right" \unHideNotes \oneVoice r8 d e fis a d ) \! 2 r4 2.=20 2 4 R2. *3 | =20 << \new Voice =3D "premi=C3=A8re" \relative { \voiceOne 2 ^\markup {\bold {au Mouvt}} \arpeggio s4 =20 } \new Voice =3D "seconde" \relative { \voiceTwo \hideNotes=20 \change Staff =3D "left" s4 \voiceOne=20 \shape #'((-5 . -4)(-2 . 1)(-3 . 2.5)(1 . 0)) Slur=20 f8 ( c'8=20 \change Staff =3D "right"=20 \unHideNotes \oneVoice=20 % \stemUp \stemDown aes'4 ) } >> R2. << \new Voice =3D "premi=C3=A8re" \relative { \voiceOne 4 \arpeggio s4 s8 s8 } \new Voice =3D "seconde" \relative { \voiceTwo \hideNotes=20 \change Staff =3D "left" s4 \voiceOne=20 \shape #'((-5.8 . -17.2)(-4 . 3.5)(0 . 1)(0 . -0.3)) Slur=20 f8 ( c'8=20 \change Staff =3D "right"=20 \unHideNotes \oneVoice=20 % \stemUp g'8[ aes] ) } >> =20 R2. << \new Voice =3D "premi=C3=A8re" \relative { \voiceOne 4 \arpeggio s4 s4 } \new Voice =3D "seconde" \relative { \voiceTwo \hideNotes=20 \change Staff =3D "left" s8 \voiceOne=20 \shape #'((-2.5 . -10.5)(-2 . 1)(-2 . 2)(-3 . 0)) Slur=20 \override DynamicLineSpanner.staff-padding =3D 4 g'8 \< ( d'!8 f! b d \change Staff =3D "right"=20 \unHideNotes \oneVoice=20 % \stemUp % \stemDown r8 8 ~4 r) \! } >> R2. *2 \hideNotes \change Staff =3D "left" s8=20 \shape #'((-0.1 . -5.)(0 . 1)(-0.8 . 3.5)(0 . -2)) Slur \voiceOne a,,^"L.V."\>( e' b' c e \change Staff =3D "right" \unHideNotes \oneVoice b'8 c^\markup {\bold {Tr=C3=A8s lent}} e b' c4)\! R2. 2. \fermata \bar".." | } scoreAleft =3D \relative c'' { \global R2. %{ r8 \p a,, e' g c e ~ e2. ^"L.V" %} r8 \p a,, e' g c e ~e2. ^"L.V." r8 e,, (e'4) r r8 a, (e'4) r | =20 r8 e, (e'4) r r8 a, (e'4) r | =20 r8 d, a' d e fis ~ fis 2. =20 s2. *6 =20 r8 \p f8 [ \change Staff =3D "right" c' g'8] s4 \change Staff =3D "left" R2. r8 f, [ \change Staff =3D "right" c' f8] s4 \change Staff =3D "left" R2. r8 g,, d'! f! b d s2.=20 =20 R2. *2 r8 \shiftOn a,, e' b' c e=20 s2. R2. *2 \bar".." | =20 } =20 scoreAFlutePart =3D \new Staff \with { instrumentName =3D "2 fl=C3=BBtes" midiInstrument =3D "flute" }=20 { \tag conducteur \set Staff.shortInstrumentName =3D "Fl" \scoreAFlute } scoreAHarpePart =3D \new PianoStaff \with { instrumentName =3D "Harpe" } { \tag conducteur \set PianoStaff.shortInstrumentName =3D "Hp" << \new Staff =3D "right" \with { midiInstrument =3D "orchestral harp" } \scoreAright \new Staff =3D "left" \with { midiInstrument =3D "orchestral harp" } { \clef bass \scoreAleft } >> } \addQuote "scoreAright" { \scoreAright } \addQuote "scoreAleft" { \scoreAleft } \layout { \override Score.BarNumber.break-visibility =3D #end-of-line-invisible \set Score.barNumberVisibility =3D #(every-nth-bar-number-visible 5) } \score { \removeWithTag #'part \killCues \new StaffGroup <<=20 \scoreAFlutePart \scoreAHarpePart >> \layout { \context { \Staff \RemoveEmptyStaves } \context { \Score \override StaffGrouper.staff-staff-spacing.padding =3D #3 } } \midi { \tempo 4. =3D 80 } } % 2 fl=C3=BBtes \bookpart { \header {subtitle =3D "2 fl=C3=BBtes"} \paper { system-separator-markup =3D ##f system-system-spacing.basic-distance =3D #25=20 } \score { \removeWithTag conducteur \scoreAFlutePart \layout {} \midi {\tempo 4=3D100} } } % Harpe \bookpart { \header {subtitle =3D "Harpe"} \paper { system-separator-markup =3D ##f system-system-spacing.basic-distance =3D #25=20 } \score { \removeWithTag conducteur \scoreAHarpePart \layout {} \midi {\tempo 4=3D100} } } ``` --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/16). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6639766432650_3334ef33a2c731392 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Jean Abou Samra jeanas
Mai 7<= /span>

Pas le temps de faire plus vu l'heure, mais le probl=C3=A8me principal= dans cet exemple, ce sont tout b=C3=AAtement des } et >> oubli=C3=A9= s ou mal plac=C3=A9s.

=C3=87a va d=C3=A9j=C3=A0 nettement mie= ux comme =C3=A7a, j'ai aussi r=C3=A9indent=C3=A9, fait quelques simplificatio= ns et rajout=C3=A9 le \killCues manquant entre autres :

\version "2.24.1"

\tagGroup #'(conducteur)

\header {
  title =3D "Pr=C3=A9lude-V2"
}

global =3D {
  \numericTimeSignature
  \time 3/4
  \tempo "Assez lent" 4 =3D 60
}

scoreAFlute =3D \relative c'' {
  \global
  R2.*7
  \tag #'part { <>^\markup { \tiny "harpe" } }
  \cueDuringWithClef "scoreAleft" #UP "bass" { R2. }
  \cueDuring "scoreAright" #UP { R2. }

  \break
  r8  g'' \pp ( ~g8 d e4 ~
  e4 d8 \< b a b \!
  e4 \> d8 g, b4~ \!
  b4 a8 \< g e g=20
  b d! \!  b4. a8
  b8 ^\markup {\bold Ralenti} e, \> g2 \! ) |

  R2. *7 ^\markup {\bold {au Mouvt}}
  R2. *2 ^\markup {\bold {Ralenti}}
  R2. *2 ^\markup {\bold {Tr=C3=A8s lent}}
  <c e>4 \pp \fermata r r \bar".." |
}

scoreAright =3D \relative c'' {
  \global
  R2.
  \hideNotes \change Staff =3D "left"
  s8=20
  \shape #'((-0.7 . -4)(0 . 1)(0 . 1)(0 . -0.5)) Slur
  \voiceOne a,,( e' g c e \change Staff =3D "right" \unHideNotes
  \oneVoice g8 c) ~c2

  <d, fis b>2\arpeggio r4
  <g c e>2 \arpeggio r4
  <d fis b>2 \< \arpeggio r4 \!
  <c e>2 r4
=20
  \hideNotes \change Staff =3D "left" s8=20
  \shape #'((-0.4 . -0)(0 . 3)(0 . 3)(0 . 0)) Slur
  \override DynamicLineSpanner.staff-padding =3D 3
  \voiceOne d,\> ( a' d e fis \change Staff =3D "right" \unHideNotes
  \oneVoice r8 d e fis a d ) \!

  <f! a>2 r4
  <f, \flageolet  a\flageolet  >2.=20
  <f' a>2 <dis,\flageolet \laissezVibrer  ges\flageolet\laissezVibre=
r  >4
  R2. *3 |
=20
  <<
    \new Voice =3D "premi=C3=A8re"
    \relative {
      \voiceOne
      <g' aes c! g'>2  ^\markup {\bold {au Mouvt}} \arpeggio s4 =20
    }
    \new Voice =3D "seconde"
    \relative {
      \voiceTwo
      \hideNotes=20
      \change Staff =3D "left" s4
      \voiceOne=20
      \shape #'((-5 . -4)(-2 . 1)(-3 . 2.5)(1 . 0)) Slur=20
      f8 ( c'8=20
      \change Staff =3D "right"=20
      \unHideNotes
      \oneVoice=20
      %  \stemUp
      \stemDown
      aes'4 )
    }
  >>
  R2.
  <<
    \new Voice =3D "premi=C3=A8re"
    \relative {
      \voiceOne
      <g' aes c! g'>4 \arpeggio s4  s8 s8
    }
    \new Voice =3D "seconde"
    \relative {
      \voiceTwo
      \hideNotes=20
      \change Staff =3D "left" s4
      \voiceOne=20
      \shape #'((-5.8 . -17.2)(-4 . 3.5)(0 . 1)(0 . -0.3)) Slur=20
      f8 ( c'8=20
      \change Staff =3D "right"=20
      \unHideNotes
      \oneVoice=20
      %  \stemUp
      g'8[  aes] )
    }
  >>
=20
  R2.
  <<
    \new Voice =3D "premi=C3=A8re"
    \relative {
      \voiceOne
      <bes d! a'>4 \arpeggio s4  s4
    }
    \new Voice =3D "seconde"
    \relative {
      \voiceTwo
      \hideNotes=20
      \change Staff =3D "left" s8
      \voiceOne=20
      \shape #'((-2.5 . -10.5)(-2 . 1)(-2 . 2)(-3 . 0)) Slur=20
      \override DynamicLineSpanner.staff-padding =3D 4
      g'8 \< ( d'!8  f! b d
      \change Staff =3D "right"=20
      \unHideNotes
      \oneVoice=20
      %  \stemUp
      % \stemDown
      r8 <bes, d>8 ~<bes d>4 r) \!
    }
  >>

  R2. *2
  \hideNotes \change Staff =3D "left" s8=20
  \shape #'((-0.1 . -5.)(0 . 1)(-0.8 . 3.5)(0 . -2)) Slur
  \voiceOne a,,^"L.V."\>( e' b' c e \change Staff =3D "right" \unHideNotes
  \oneVoice b'8 c^\markup {\bold {Tr=C3=A8s lent}} e b' c4)\!

  R2.
  <c \flageolet e \flageolet>2. \fermata
  \bar".." |
}

scoreAleft =3D \relative c'' {
  \global

  R2.
  %{ r8 \p a,, e' g c e ~
 e2. ^"L.V"  %}
  r8 \p a,, e' g c e ~e2. ^"L.V."

  r8 e,, (e'4) r
  r8 a, (e'4) r |
=20
  r8 e, (e'4) r
  r8 a, (e'4) r |
=20
  r8 d, a' d e fis ~ fis 2.
=20
  s2. *6
=20
  r8 \p f8 [ \change Staff =3D "right" c' g'8] s4
  \change Staff =3D "left"
  R2.
  r8 f, [ \change Staff =3D "right" c' f8] s4
  \change Staff =3D "left"
  R2.
  r8  g,, d'! f! b d
  s2.=20
=20
  R2. *2
  r8 \shiftOn a,, e' b' c e=20
  s2.
  R2. *2
  \bar".." |
=20
} =20

scoreAFlutePart =3D \new Staff \with {
  instrumentName =3D "2 fl=C3=BBtes"
  midiInstrument =3D "flute"

}=20
{
  \tag conducteur \set Staff.shortInstrumentName =3D "Fl"
  \scoreAFlute
}

scoreAHarpePart =3D \new PianoStaff \with {
  instrumentName =3D "Harpe"
} {
  \tag conducteur \set PianoStaff.shortInstrumentName =3D "Hp"
  <<
    \new Staff =3D "right" \with {
      midiInstrument =3D "orchestral harp"
    } \scoreAright
    \new Staff =3D "left" \with {
      midiInstrument =3D "orchestral harp"
    } { \clef bass \scoreAleft }
  >>
}

\addQuote "scoreAright" { \scoreAright }
\addQuote "scoreAleft" { \scoreAleft }

\layout {
  \override Score.BarNumber.break-visibility =3D #end-of-line-invisible
  \set Score.barNumberVisibility =3D #(every-nth-bar-number-visible 5)
}

\score {
  \removeWithTag #'part \killCues \new StaffGroup  <<=20
      \scoreAFlutePart
      \scoreAHarpePart
  >>
  \layout {
    \context {
      \Staff
      \RemoveEmptyStaves
    }
    \context {
      \Score
      \override StaffGrouper.staff-staff-spacing.padding =3D #3
    }
  }
  \midi {
    \tempo 4. =3D 80
  }
}

% 2 fl=C3=BBtes
\bookpart {
  \header {subtitle =3D "2 fl=C3=BBtes"}
  \paper {
    system-separator-markup =3D ##f
    system-system-spacing.basic-distance =3D #25=20
  }
  \score {
    \removeWithTag conducteur \scoreAFlutePart
    \layout {}
    \midi {\tempo 4=3D100}
  }
}

% Harpe
\bookpart {
  \header {subtitle =3D "Harpe"}
  \paper {
    system-separator-markup =3D ##f
    system-system-spacing.basic-distance =3D #25=20
  }
  \score {
    \removeWithTag conducteur \scoreAHarpePart
    \layout {}
    \midi {\tempo 4=3D100}
  }
}

Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6639766432650_3334ef33a2c731392-- From MAILER-DAEMON Tue May 7 10:16:09 2024 Return-Path: Date: Tue, 07 May 2024 10:16:09 +0000 From: Gilles via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Timline_pour_musique_de?= =?UTF-8?Q?_film?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6639ff698475c_3334ef33a2c73686e"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30185 X-Discourse-Topic-Id: 5696 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/timline-pour-musique-de-film/5696 ----==_mimepart_6639ff698475c_3334ef33a2c73686e Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Super bravo Jean ! N'y aurait-il pas moyen de rendre la fonction automatique, avec les BarNumber= s? Parce que du coup, on pourrait en profiter pour rattraper le timecode perdu l= ors d'une repeat volta par exemple. Pour l'instant s'il y a un repeat volta =C3=A7a ne prend pas en compte le tem= ps de la r=C3=A9p=C3=A9tition, et il me semble que BarNumber est capable de c= alculer le nombre de mesures r=C3=A9p=C3=A9t=C3=A9es. Gilles --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/timline-pour-musique-de-film/5696/22). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6639ff698475c_3334ef33a2c73686e Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Gilles Yagloops
Mai 7<= /span>

Super bravo Jean !
N'y aurait-il pas moyen de rendre la fonction automatique, avec les BarNumber= s?
Parce que du coup, on pourrait en profiter pour rattraper le timecode perdu l= ors d'une repeat volta par exemple.
Pour l'instant s'il y a un repeat volta =C3=A7a ne prend pas en compte le tem= ps de la r=C3=A9p=C3=A9tition, et il me semble que BarNumber est capable de c= alculer le nombre de mesures r=C3=A9p=C3=A9t=C3=A9es.
Gilles


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6639ff698475c_3334ef33a2c73686e-- From MAILER-DAEMON Tue May 7 10:18:43 2024 Return-Path: Date: Tue, 07 May 2024 10:18:43 +0000 From: Gilles via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Lien_Guide_d'extension?= =?UTF-8?Q?_sur_lilypond_community?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_663a0003e712_3334ef33a04742162"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30186 X-Discourse-Topic-Id: 5701 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/lien-guide-dextension-sur-lilypond-community/5701 ----==_mimepart_663a0003e712_3334ef33a04742162 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Merci Jean ! --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/lien-guide-dextension-sur-lilypond-community/5701/3). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_663a0003e712_3334ef33a04742162 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Gilles Yagloops
Mai 7<= /span>

Merci Jean !


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_663a0003e712_3334ef33a04742162-- From MAILER-DAEMON Wed May 8 11:49:42 2024 Return-Path: Date: Wed, 08 May 2024 11:49:42 +0000 From: Gilles via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Petite_erreur_de_nom_dans?= =?UTF-8?Q?_la_doc_pour_\displayScheme?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_663b66d6adc8e_3334ef33a0474802b"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30187 X-Discourse-Topic-Id: 5705 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/petite-erreur-de-nom-dans-la-doc-pour-displayscheme/5705 ----==_mimepart_663b66d6adc8e_3334ef33a0474802b Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Dans la doc c'est =C3=A9crit \displaysScheme au lieu de \displayScheme #### 2.5.1 Construction d=E2=80=99un *markup* en Scheme Les expressions *markup* sont repr=C3=A9sent=C3=A9es en Scheme de mani=C3=A8r= e interne par la macro `markup` : (markup expression) La commande `\displayScheme` permet d=E2=80=99obtenir la repr=C3=A9sentation = en Scheme d=E2=80=99une expression *markup* : \displaysScheme \markup { \column { \line { \bold \italic "hello" \raise #0.4= "world" } \larger \line { foo bar baz } } } Gilles --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/petite-erreur-de-nom-dans-la-doc-pour-displayscheme/5705/1). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_663b66d6adc8e_3334ef33a0474802b Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Gilles Yagloops
Mai 8<= /span>

Dans la doc c'est =C3=A9crit \displaysScheme au lieu de \displayScheme=

= 2.5.1 Construction d=E2=80=99un markup en Scheme

Les expressions markup sont re= pr=C3=A9sent=C3=A9es en Scheme de mani=C3=A8re interne par la macro markup :=

(markup expression)

La commande \displayScheme permet d=E2= =80=99obtenir la repr=C3=A9sentation en Scheme d=E2=80=99une expression m= arkup :

\displaysScheme \markup { \column { \li= ne { \bold \italic "hello" \raise #0.4 "world" } \larger \line {= foo bar baz } } }

Gilles

                                                           
=20 =20 =20 ----==_mimepart_663b66d6adc8e_3334ef33a0474802b-- From MAILER-DAEMON Wed May 8 19:56:08 2024 Return-Path: Date: Wed, 08 May 2024 19:56:08 +0000 From: Christophe via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_663bd8d7f30b8_3334ef33a04754257"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30188 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_663bd8d7f30b8_3334ef33a04754257 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Merci Michel pour ce partage. Il faut que je me familiarise avec les notions = que tu =C3=A9voques. La division des taches est peut-=C3=AAtre une solution q= uand la partition est trop longue. --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/17). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_663bd8d7f30b8_3334ef33a04754257 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Christophe Christophe
Mai 8<= /span>

Merci Michel pour ce partage. Il faut que je me familiarise avec les n= otions que tu =C3=A9voques. La division des taches est peut-=C3=AAtre une sol= ution quand la partition est trop longue.


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_663bd8d7f30b8_3334ef33a04754257-- From MAILER-DAEMON Wed May 8 20:03:41 2024 Return-Path: Date: Wed, 08 May 2024 20:03:41 +0000 From: Christophe via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_663bda9cde333_3334ef339f075960"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30189 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_663bda9cde333_3334ef339f075960 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour Jean, merci pour votre relecture et votre clarification. > Citation le probl=C3=A8me principal dans cet exemple, ce sont tout b=C3=AAt= ement des `}` et `>>` oubli=C3=A9s ou mal plac=C3=A9s. J'ai remarqu=C3=A9 que le copi=C3=A9-coll=C3=A9 faisait dispara=C3=AEtre plus= ieurs symboles. Malgr=C3=A9 ces corrections, beaucoup de messages d'erreurs apparaissent =C3= =A0 la compilation. Par exemple : > CitationD=C3=A9marrage lilypond 2.24.1 [Sans titre]... Traitement de =C2=AB /tmp/frescobaldi-1iowshaw/tmpsa3rbt8w/document.ly =C2=BB Analyse... /tmp/frescobaldi-1iowshaw/tmpsa3rbt8w/document.ly:39:14: Avertissement : impo= ssible de rep=C3=A9rer le contexte vers lequel basculer : Staff =3D left \hideNotes=20 \change Staff =3D "left" /tmp/frescobaldi-1iowshaw/tmpsa3rbt8w/document.ly:42:27: Avertissement : impo= ssible de rep=C3=A9rer le contexte vers lequel basculer : Staff =3D right \voiceOne a,,( e' g c e=20 \change Staff =3D "right" \unHideNotes /tmp/frescobaldi-1iowshaw/tmpsa3rbt8w/document.ly:50:14: Avertissement : impo= ssible de rep=C3=A9rer le contexte vers lequel basculer : Staff =3D left \hideNotes=20 \change Staff =3D "left" s8=20 /tmp/frescobaldi-1iowshaw/tmpsa3rbt8w/document.ly:53:31: Avertissement : impo= ssible de rep=C3=A9rer le contexte vers lequel basculer : Staff =3D right \voiceOne d,\> ( a' d e fis=20 \change Staff =3D "right" \unHideNotes /tmp/frescobaldi-1iowshaw/tmpsa3rbt8w/document.ly:71:7: Avertissement : impos= sible de rep=C3=A9rer le contexte vers lequel basculer : Staff =3D left =20 Pourriez-vous =C3=A9galement m'expliquer la raison de l'=C3=A9cartement pl= us grand des port=C3=A9es de harpe dans le dernier syst=C3=A8me ? Et le moyen= de le corriger. Merci beaucoup pour votre aide et votre p=C3=A9dagogie. Cordialement. Christophe --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/18). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_663bda9cde333_3334ef339f075960 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Christophe Christophe
Mai 8<= /span>

Bonjour Jean, merci pour votre relecture et votre clarification.

Citation le probl=C3=A8me principal dans cet exemple, ce sont tout b= =C3=AAtement des } et >> oubli=C3=A9s ou mal plac=C3=A9s.
J'ai remarqu=C3=A9 que le copi=C3=A9-coll=C3=A9 faisait dispara=C3=AEtre plus= ieurs symboles.

Malgr=C3=A9 ces corrections, beaucoup d= e messages d'erreurs apparaissent =C3=A0 la compilation. Par exemple :

CitationD=C3=A9marrage lilypond 2.24.1 [Sans titre]...
Traitement de =C2=AB /tmp/frescobaldi-1iowshaw/tmpsa3rbt8w/document.ly =C2=BB=
Analyse...
/tmp/frescobaldi-1iowshaw/tmpsa3rbt8w/document.ly:39:14: Avertissement : impo= ssible de rep=C3=A9rer le contexte vers lequel basculer : Staff =3D left
\hideNotes
\change Staff =3D "left"
/tmp/frescobaldi-1iowshaw/tmpsa3rbt8w/document.ly:42:27: Avertissement : impo= ssible de rep=C3=A9rer le contexte vers lequel basculer : Staff =3D right
\voiceOne a,,( e' g c e
\change Staff =3D "right" \unHideNotes
/tmp/frescobaldi-1iowshaw/tmpsa3rbt8w/document.ly:50:14: Avertissement : impo= ssible de rep=C3=A9rer le contexte vers lequel basculer : Staff =3D left
\hideNotes
\change Staff =3D "left" s8
/tmp/frescobaldi-1iowshaw/tmpsa3rbt8w/document.ly:53:31: Avertissement : impo= ssible de rep=C3=A9rer le contexte vers lequel basculer : Staff =3D right
\voiceOne d,> ( a' d e fis
\change Staff =3D "right" \unHideNotes
/tmp/frescobaldi-1iowshaw/tmpsa3rbt8w/document.ly:71:7: Avertissement : impos= sible de rep=C3=A9rer le contexte vers lequel basculer : Staff =3D left

Pourriez-vous =C3=A9galement m'explique= r la raison de l'=C3=A9cartement plus grand des port=C3=A9es de harpe dans le= dernier syst=C3=A8me ? Et le moyen de le corriger.
Merci beaucoup pour votre aide et votre p=C3=A9dagogie.
Cordialement.
Christophe


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_663bda9cde333_3334ef339f075960-- From MAILER-DAEMON Thu May 9 20:50:42 2024 Return-Path: Date: Thu, 09 May 2024 20:50:42 +0000 From: xavier via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_663d37224a80f_3334ef339dc76565a"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30190 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_663d37224a80f_3334ef339dc76565a Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 [quote=3D"Christophe, post:18, topic:5698"] Pourriez-vous =C3=A9galement m'expliquer la raison de l'=C3=A9cartement plus = grand des port=C3=A9es de harpe dans le dernier syst=C3=A8me ? Et le moyen de= le corriger. [/quote] J'avais d=C3=A9j=C3=A0 r=C3=A9pondu [ici](https://lilypond.community/t/nuance= s-differentes-entre-conducteur-et-parties-separees/5697/5). Mettez `hideNotes =3D {}` au d=C3=A9but de votre fichier et vous verrez ces n= otes (plus transparentes) qui affectent l'espacement vertical. --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/19). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_663d37224a80f_3334ef339dc76565a Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
xavier xavier
Mai 9<= /span>
3D"" Christophe:

Pourriez-vous =C3=A9galement m'expliquer la raison d= e l'=C3=A9cartement plus grand des port=C3=A9es de harpe dans le dernier syst= =C3=A8me ? Et le moyen de le corriger.

J'avais d=C3=A9j=C3=A0 r=C3=A9pondu ici.

Mettez hideNotes =3D {} au d=C3=A9but = de votre fichier et vous verrez ces notes (plus transparentes) qui affectent = l'espacement vertical.


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_663d37224a80f_3334ef339dc76565a-- From MAILER-DAEMON Fri May 10 09:16:39 2024 Return-Path: Date: Fri, 10 May 2024 09:16:39 +0000 From: Jean Abou Samra via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_663de5f74806_3334ef339dc771189"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30191 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_663de5f74806_3334ef339dc771189 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 [quote=3D"Christophe, post:18, topic:5698"] Malgr=C3=A9 ces corrections, beaucoup de messages d'erreurs apparaissent =C3= =A0 la compilation. [/quote] J'avoue que j'ai mis un moment =C3=A0 les comprendre. Ils sont li=C3=A9s au `= \addQuote`, qui cr=C3=A9e une sorte de contexte parall=C3=A8le o=C3=B9 la mus= ique cit=C3=A9e est interpr=C3=A9t=C3=A9e, et dans ce contexte, il n'y a qu'u= ne des deux mains du piano (vu que vous faites des `\addQuote` s=C3=A9par=C3= =A9s sur les deux), et donc la port=C3=A9e de l'autre main n'est pas trouv=C3= =A9e. On peut corriger =C3=A7a en enlevant les `\change` dans ce qui est pass=C3=A9= =C3=A0 `\addQuote`, =C3=A0 l'aide des tags. [quote=3D"Christophe, post:18, topic:5698"] Pourriez-vous =C3=A9galement m'expliquer la raison de l'=C3=A9cartement plus = grand des port=C3=A9es de harpe dans le dernier syst=C3=A8me ? Et le moyen de= le corriger. [/quote] Comme l'a expliqu=C3=A9 Xavier, ce sont vos notes invisibles qui prennent l'e= space. Mais de toute fa=C3=A7on, ces notes invisibles sont inutiles. Il est b= eaucoup plus simple de faire passer la voix de la port=C3=A9e du bas sur la p= ort=C3=A9e du haut sans rien dupliquer. Voil=C3=A0 ma version corrig=C3=A9e, j'en ai profit=C3=A9 pour enlever tous v= os `\shape` et les remplacer par une incantation automagique qui incite les e= xtr=C3=A9mit=C3=A9s des liaisons =C3=A0 se rapprocher des notes (`\override V= oice.Slur.details.edge-attraction-factor`). ``` \version "2.24.1" \tagGroup conducteur \tagGroup quote,noQuote \header { title =3D "Pr=C3=A9lude-V2" } left =3D \tag noQuote \change Staff =3D "left" right =3D \tag noQuote \change Staff =3D "right" global =3D { \numericTimeSignature \time 3/4 \tempo "Assez lent" 4 =3D 60 } scoreAFlute =3D \relative c'' { \global R2.*7 \tag part { <>^\markup { \tiny "harpe" } } \cueDuringWithClef "scoreAleft" #UP "bass" { R2. } \cueDuring "scoreAright" #UP { R2. } \break r8 g''\pp( ~g8 d e4~ e4 d8\< b a b\! e4\> d8 g, b4~\! b4 a8\< g e g=20 b d!\! b4. a8 b8^\markup {\bold Ralenti} e,\> g2\! ) | R2.*7^\markup {\bold {au Mouvt}} R2.*2^\markup {\bold {Ralenti}} R2.*2^\markup {\bold {Tr=C3=A8s lent}} 4\pp\fermata r r \fine } scoreAright =3D \relative c'' { \global R2. \left s8 \voiceTwo a,,^( e' g c e \right \oneVoice g8 c) ~c2 2\arpeggio r4 2 \arpeggio r4 2 \< \arpeggio r4 \! 2 r4 =20 \left s8 \voiceOne d,,\>( a' d e fis \right \oneVoice r8 d' e fis a d )\! 2 r4 2.=20 2 4 R2.*3 | 2^\markup {\bold {au Mouvt}}\arpeggio s4 =20 R2. 4\arpeggio s4 s8 s8 =20 R2. 4\arpeggio s4 s4 s2. R2.*2 R2. s2. R2. 2.\fermata \fine | } scoreAleft =3D \relative c'' { \global R2. %{ r8 \p a,, e' g c e ~ e2. ^"L.V" %} r8\p a,, e' g c e ~e2.^"L.V." r8 e,,( e'4) r r8 a,( e'4) r | =20 r8 e,( e'4) r r8 a,( e'4) r | =20 r8 d, a' d e fis\tag noQuote ~ fis2. =20 s2.*6 =20 r8\p f8([ \right c' g'8] aes4) \left R2. r8 f,([ \right c' f8] g aes) \left R2. r8 g,,( d'! f! b d \right r8 8~ 4) r4 \left R2.*2 r8 \shiftOn a,,,( e' b' c e=20 \right b'8 c^\markup {\bold {Tr=C3=A8s lent}} e b' c4)\! \left R2.*2 \fine | } =20 scoreAFlutePart =3D \new Staff \with { instrumentName =3D "2 fl=C3=BBtes" midiInstrument =3D "flute" }=20 { \tag conducteur \set Staff.shortInstrumentName =3D "Fl" \scoreAFlute } scoreAHarpePart =3D \new PianoStaff \with { instrumentName =3D "Harpe" } { \tag conducteur \set PianoStaff.shortInstrumentName =3D "Hp" << \new Staff =3D "right" \with { midiInstrument =3D "orchestral harp" } \scoreAright \new Staff =3D "left" \with { midiInstrument =3D "orchestral harp" } { \clef bass \scoreAleft } >> } \addQuote "scoreAright" \keepWithTag quote \scoreAright \addQuote "scoreAleft" \keepWithTag quote \scoreAleft \layout { \override Score.BarNumber.break-visibility =3D #end-of-line-invisible \set Score.barNumberVisibility =3D #(every-nth-bar-number-visible 5) \override Voice.Slur.details.edge-attraction-factor =3D 10 } \score { \removeWithTag #'part \killCues \new StaffGroup <<=20 \scoreAFlutePart \scoreAHarpePart >> \layout { \context { \Staff \RemoveEmptyStaves } \context { \Score \override StaffGrouper.staff-staff-spacing.padding =3D #3 } } \midi { \tempo 4. =3D 80 } } % 2 fl=C3=BBtes \bookpart { \header {subtitle =3D "2 fl=C3=BBtes"} \paper { system-separator-markup =3D ##f system-system-spacing.basic-distance =3D #25=20 } \score { \removeWithTag conducteur \scoreAFlutePart \layout {} \midi {\tempo 4=3D100} } } % Harpe \bookpart { \header {subtitle =3D "Harpe"} \paper { system-separator-markup =3D ##f system-system-spacing.basic-distance =3D #25=20 } \score { \removeWithTag conducteur \scoreAHarpePart \layout {} \midi {\tempo 4=3D100} } } ``` --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/20). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_663de5f74806_3334ef339dc771189 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Jean Abou Samra jeanas
Mai 10=
3D"" Christophe:

Malgr=C3=A9 ces corrections, beaucoup de messages d'= erreurs apparaissent =C3=A0 la compilation.

J'avoue que j'ai mis un moment =C3=A0 l= es comprendre. Ils sont li=C3=A9s au \addQuote, qui cr=C3=A9e une sorte de c= ontexte parall=C3=A8le o=C3=B9 la musique cit=C3=A9e est interpr=C3=A9t=C3=A9= e, et dans ce contexte, il n'y a qu'une des deux mains du piano (vu que vous = faites des \addQuote s=C3=A9par=C3=A9s sur les deux), et donc la port=C3=A9e= de l'autre main n'est pas trouv=C3=A9e.

On peut corriger =C3=A7a en enlevant le= s \cha= nge dans ce qui est pass=C3=A9 =C3=A0 \addQuote, =C3=A0 l'aide des ta= gs.

3D"" Christophe:

Pourriez-vous =C3=A9galement m'expliquer la raison d= e l'=C3=A9cartement plus grand des port=C3=A9es de harpe dans le dernier syst= =C3=A8me ? Et le moyen de le corriger.

Comme l'a expliqu=C3=A9 Xavier, ce sont= vos notes invisibles qui prennent l'espace. Mais de toute fa=C3=A7on, ces no= tes invisibles sont inutiles. Il est beaucoup plus simple de faire passer la = voix de la port=C3=A9e du bas sur la port=C3=A9e du haut sans rien dupliquer.=

Voil=C3=A0 ma version corrig=C3=A9e, j'= en ai profit=C3=A9 pour enlever tous vos \shape et les remplacer par une inc= antation automagique qui incite les extr=C3=A9mit=C3=A9s des liaisons =C3=A0 = se rapprocher des notes (\override Voice.Slur.details.edge-attraction-factor= ).

\version "2.24.1"

\tagGroup conducteur
\tagGroup quote,noQuote

\header {
  title =3D "Pr=C3=A9lude-V2"
}

left =3D \tag noQuote \change Staff =3D "left"
right =3D \tag noQuote \change Staff =3D "right"

global =3D {
  \numericTimeSignature
  \time 3/4
  \tempo "Assez lent" 4 =3D 60
}

scoreAFlute =3D
\relative c'' {
  \global
  R2.*7
  \tag part { <>^\markup { \tiny "harpe" } }
  \cueDuringWithClef "scoreAleft" #UP "bass" { R2. }
  \cueDuring "scoreAright" #UP { R2. }

  \break
  r8  g''\pp( ~g8 d e4~
  e4 d8\< b a b\!
  e4\> d8 g, b4~\!
  b4 a8\< g e g=20
  b d!\!  b4. a8
  b8^\markup {\bold Ralenti} e,\> g2\! ) |

  R2.*7^\markup {\bold {au Mouvt}}
  R2.*2^\markup {\bold {Ralenti}}
  R2.*2^\markup {\bold {Tr=C3=A8s lent}}
  <c e>4\pp\fermata r r
  \fine
}

scoreAright =3D \relative c'' {
  \global
  R2.
  \left
  s8
  \voiceTwo a,,^( e' g c e \right
  \oneVoice g8 c) ~c2

  <d, fis b>2\arpeggio r4
  <g c e>2 \arpeggio r4
  <d fis b>2 \< \arpeggio r4 \!
  <c e>2 r4
=20
  \left
  s8
  \voiceOne d,,\>( a' d e fis
  \right
  \oneVoice r8 d' e fis a d )\!

  <f! a>2 r4
  <f,\flageolet  a\flageolet  >2.=20
  <f' a>2 <dis,\flageolet\laissezVibrer ges\flageolet\laissezVibrer&=
gt;4
  R2.*3 |

  <g aes c! g'>2^\markup {\bold {au Mouvt}}\arpeggio s4 =20

  R2.

  <g aes c! g'>4\arpeggio s4  s8 s8
=20
  R2.

  <bes d! a'>4\arpeggio s4  s4

  s2. R2.*2

  R2. s2. R2.
  <c\flageolet e\flageolet>2.\fermata
  \fine |
}

scoreAleft =3D
\relative c'' {
  \global

  R2.
  %{ r8 \p a,, e' g c e ~
 e2. ^"L.V"  %}
  r8\p a,, e' g c e ~e2.^"L.V."

  r8 e,,( e'4) r
  r8 a,( e'4) r |
=20
  r8 e,( e'4) r
  r8 a,( e'4) r |
=20
  r8 d, a' d e fis\tag noQuote ~ fis2.
=20
  s2.*6
=20
  r8\p f8([ \right c' g'8] aes4)
  \left
  R2.
  r8 f,([ \right c' f8] g aes)
  \left
  R2.
  r8  g,,( d'! f! b d
  \right
  r8 <bes' d>8~ 4) r4
  \left
  R2.*2
  r8 \shiftOn a,,,( e' b' c e=20
  \right
  b'8 c^\markup {\bold {Tr=C3=A8s lent}} e b' c4)\!
  \left
  R2.*2
  \fine |
} =20

scoreAFlutePart =3D
\new Staff \with {
  instrumentName =3D "2 fl=C3=BBtes"
  midiInstrument =3D "flute"

}=20
{
  \tag conducteur \set Staff.shortInstrumentName =3D "Fl"
  \scoreAFlute
}

scoreAHarpePart =3D
\new PianoStaff \with {
  instrumentName =3D "Harpe"
} {
  \tag conducteur \set PianoStaff.shortInstrumentName =3D "Hp"
  <<
    \new Staff =3D "right" \with {
      midiInstrument =3D "orchestral harp"
    } \scoreAright
    \new Staff =3D "left" \with {
      midiInstrument =3D "orchestral harp"
    } { \clef bass \scoreAleft }
  >>
}

\addQuote "scoreAright" \keepWithTag quote \scoreAright
\addQuote "scoreAleft" \keepWithTag quote \scoreAleft

\layout {
  \override Score.BarNumber.break-visibility =3D #end-of-line-invisible
  \set Score.barNumberVisibility =3D #(every-nth-bar-number-visible 5)
  \override Voice.Slur.details.edge-attraction-factor =3D 10
}

\score {
  \removeWithTag #'part \killCues \new StaffGroup  <<=20
      \scoreAFlutePart
      \scoreAHarpePart
  >>
  \layout {
    \context {
      \Staff
      \RemoveEmptyStaves
    }
    \context {
      \Score
      \override StaffGrouper.staff-staff-spacing.padding =3D #3
    }
  }
  \midi {
    \tempo 4. =3D 80
  }
}

% 2 fl=C3=BBtes
\bookpart {
  \header {subtitle =3D "2 fl=C3=BBtes"}
  \paper {
    system-separator-markup =3D ##f
    system-system-spacing.basic-distance =3D #25=20
  }
  \score {
    \removeWithTag conducteur \scoreAFlutePart
    \layout {}
    \midi {\tempo 4=3D100}
  }
}

% Harpe
\bookpart {
  \header {subtitle =3D "Harpe"}
  \paper {
    system-separator-markup =3D ##f
    system-system-spacing.basic-distance =3D #25=20
  }
  \score {
    \removeWithTag conducteur \scoreAHarpePart
    \layout {}
    \midi {\tempo 4=3D100}
  }
}

Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_663de5f74806_3334ef339dc771189-- From MAILER-DAEMON Fri May 10 16:26:27 2024 Return-Path: Date: Fri, 10 May 2024 16:26:27 +0000 From: Jean-Charles Malahieude via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: <4dacd9fa-f86c-4c7d-8a39-e79a407db05f@orange.fr> In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Petite_erreur_de_syntaxe?= =?UTF-8?Q?_=28dans_l'exemple=29_de_la_doc_v2.25_pour_\displayScheme?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_663e4ab333736_3334ef33a0477645d"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30192 X-Discourse-Topic-Id: 5705 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/petite-erreur-de-syntaxe-dans-lexemple-de-la-doc-v2-25-pour-displayscheme/5705 ----==_mimepart_663e4ab333736_3334ef33a0477645d Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Le 08/05/2024 =C3=A0 13:49, Gilles via LilyPond a =C3=A9crit : >=20 >=20 > Dans la doc c'est =C3=A9crit \displaysScheme au lieu de \displayScheme >=20 > #### 2.5.1 Construction d=E2=80=99un *markup* en Scheme >=20 > Les expressions *markup* sont repr=C3=A9sent=C3=A9es en Scheme de mani=C3= =A8re interne par la macro `markup` : >=20 > (markup expression) >=20 > La commande `\displayScheme` permet d=E2=80=99obtenir la repr=C3=A9sentatio= n en Scheme d=E2=80=99une expression *markup* : >=20 > \displaysScheme \markup { \column { \line { \bold \italic "hello" \raise #0= .4 "world" } \larger \line { foo bar baz } } } >=20 >=20 Un peu =C3=A0 court de temps pour ce week-end, mais not=C3=A9. Cordialement, -- Jean-Charles --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/petite-erreur-de-syntaxe-dans-lexemple-de-la-doc-v2-25-pour-displaysche= me/5705/2). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_663e4ab333736_3334ef33a0477645d Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Jean-Charles Malahieude lilyfan
Mai 10=

Le 08/05/2024 =C3=A0 13:49, Gilles via LilyPond a =C3=A9crit :

Dans la do= c c'est =C3=A9crit \displaysScheme au lieu de \displayScheme

2.5.1 Construction d=E2=80=99un markup en= Scheme

Les expressions markup= sont repr=C3=A9sent=C3=A9es en Scheme de mani=C3=A8re interne par la ma= cro ma= rkup :

(markup expression)

La commande \displayScheme permet d=E2=80=99obtenir la repr=C3=A9sentation en Scheme d=E2=80=99une exp= ression markup :

\displa= ysScheme \markup { \column { \line { \bold \italic "hello" \raise #0.4 "world" } \larger \line { foo bar baz } } }

Un peu =C3=A0 court de temps pour ce we= ek-end, mais not=C3=A9.

= Cordialement,

Jean-Charles


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_663e4ab333736_3334ef33a0477645d-- From MAILER-DAEMON Fri May 10 16:28:04 2024 Return-Path: Date: Fri, 10 May 2024 16:28:04 +0000 From: Gilles via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: <4dacd9fa-f86c-4c7d-8a39-e79a407db05f@orange.fr> References: <4dacd9fa-f86c-4c7d-8a39-e79a407db05f@orange.fr> Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Petite_erreur_de_syntaxe?= =?UTF-8?Q?_=28dans_l'exemple=29_de_la_doc_v2.25_pour_\displayScheme?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_663e4b1448453_3334ef339dc781718"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30193 X-Discourse-Topic-Id: 5705 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/petite-erreur-de-syntaxe-dans-lexemple-de-la-doc-v2-25-pour-displayscheme/5705 ----==_mimepart_663e4b1448453_3334ef339dc781718 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Merci Jean-Charles ! --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/petite-erreur-de-syntaxe-dans-lexemple-de-la-doc-v2-25-pour-displaysche= me/5705/3). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_663e4b1448453_3334ef339dc781718 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Gilles Yagloops
Mai 10=

Merci Jean-Charles !


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_663e4b1448453_3334ef339dc781718-- From MAILER-DAEMON Sun May 12 10:03:45 2024 Return-Path: Date: Sun, 12 May 2024 10:03:45 +0000 From: =?UTF-8?B?U8OpYmFzdGllbiBSaWNoYXJkIHZpYSBMaWx5UG9uZA==?= To: mbox-archiver@notifications.lilypond.community Message-ID: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_bar_line_et_changement_de?= =?UTF-8?Q?_signature?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_664094016d9eb_3334ef339dc7870ef"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30194 X-Discourse-Topic-Id: 5706 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/bar-line-et-changement-de-signature/5706 ----==_mimepart_664094016d9eb_3334ef339dc7870ef Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour =C3=A0 tous, Je retranscrit une petite partition de batterie et j'ai un changement de sign= ature rythmique (passage de 7/4 =C3=A0 5/4) comme ceci : ![20240507_191546_g|144x177](upload://7OfCjy1kFoFnxHdswx5zbX3lRj.jpeg) Je tourne autour du pot depuis un moment sans r=C3=A9ussir =C3=A0 avoir le m= =C3=AAme rendu. Quelqu'un aurait il une id=C3=A9e ? Bon dimanche ensoleill=C3=A9 ! --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/bar-line-et-changement-de-signature/5706/1). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_664094016d9eb_3334ef339dc7870ef Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
S=C3=A9bastien Richar= d Sebastien_Richard
Mai 12=

Bonjour =C3=A0 tous,

Je retranscrit une petite partition de = batterie et j'ai un changement de signature rythmique (passage de 7/4 =C3=A0 = 5/4) comme ceci :

Je tourne autour du pot depuis un momen= t sans r=C3=A9ussir =C3=A0 avoir le m=C3=AAme rendu.

Quelqu'un aurait il une id=C3=A9e ?

Bon dimanche ensoleill=C3=A9 !


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_664094016d9eb_3334ef339dc7870ef-- From MAILER-DAEMON Sun May 12 11:04:32 2024 Return-Path: Date: Sun, 12 May 2024 11:04:31 +0000 From: MartialR via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_bar_line_et_changement_de?= =?UTF-8?Q?_signature?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6640a23fc2160_3334ef33a18792367"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30195 X-Discourse-Topic-Id: 5706 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/bar-line-et-changement-de-signature/5706 ----==_mimepart_6640a23fc2160_3334ef33a18792367 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour,=20 ayant pos=C3=A9 la question il y a peu la r=C3=A9ponse de Pierre Perol-Schnei= der=20 : "avec une grace note peut-=C3=AAtre ?" Voici ce que j'ai fait :=20 ``` %---------------------------- %Double bar armure reprise dblebararmurereprise =3D { \once\override Staff.KeySignature.space-alist =3D #'((right-edge extra-space . 0.5) ;; <=3D pour =C3=A9viter les avertissemen= ts (first-note fixed-space . 0)) \grace s128 } %--usage=20 { c'1=20 \bar "||" \time 5/4 \dblebararmurereprise \repeat volta 2 { cis'1 } } %---------------------- ``` Bonne journ=C3=A9e --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/bar-line-et-changement-de-signature/5706/2). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6640a23fc2160_3334ef33a18792367 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
MartialR
Mai 12=

Bonjour,

ayant pos=C3=A9 la question il y a peu = la r=C3=A9ponse de Pierre Perol-Schneider
: "avec une grace note peut-=C3=AAtre ?"
Voici ce que j'ai fait :

%----------------------------

%Double bar armure reprise
dblebararmurereprise =3D {
  \once\override Staff.KeySignature.space-alist =3D
  #'((right-edge extra-space . 0.5) ;; <=3D pour =C3=A9viter les avertisse=
ments
                                    (first-note fixed-space . 0))
  \grace s128
}

%--usage=20
  {
    c'1=20
    \bar "||"  \time 5/4
   \dblebararmurereprise
    \repeat volta 2 {    cis'1    }
  }
%----------------------

Bonne journ=C3=A9e


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6640a23fc2160_3334ef33a18792367-- From MAILER-DAEMON Mon May 13 10:56:00 2024 Return-Path: Date: Mon, 13 May 2024 10:56:00 +0000 From: Olivier Charade via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Timline_pour_musique_de?= =?UTF-8?Q?_film?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6641f1c04a60f_3334ef33a187989c3"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30196 X-Discourse-Topic-Id: 5696 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/timline-pour-musique-de-film/5696 ----==_mimepart_6641f1c04a60f_3334ef33a187989c3 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 J'ai enfin pu tester la derni=C3=A8re version de Jean. Impeccable. Que gagne-t-on =C3=A0 s=C3=A9parer la voix du clic de celle des descriptions = textuelles? Pour l'instant j'ai gard=C3=A9 les deux dans la m=C3=AAme pour r= =C3=A9duire les risques d'oublier quelque part l'existence d'un changement de= mesure effectu=C3=A9 par la voix de structure. Et pour ma gouverne, pourquoi Lilypond m'avertit-il de multiples fois d'un bo= uclage de canal MIDI et d'une r=C3=A9affectation modulo 16 (je demande parce = que je suppose que c'est li=C3=A9 =C3=A0 cette time line; je peux me tromper)= ? --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/timline-pour-musique-de-film/5696/23). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6641f1c04a60f_3334ef33a187989c3 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Olivier Charade olicha
Mai 13=

J'ai enfin pu tester la derni=C3=A8re version de Jean. Impeccable.

Que gagne-t-on =C3=A0 s=C3=A9parer la v= oix du clic de celle des descriptions textuelles? Pour l'instant j'ai gard=C3= =A9 les deux dans la m=C3=AAme pour r=C3=A9duire les risques d'oublier quelqu= e part l'existence d'un changement de mesure effectu=C3=A9 par la voix de str= ucture.

Et pour ma gouverne, pourquoi Lilypond = m'avertit-il de multiples fois d'un bouclage de canal MIDI et d'une r=C3=A9af= fectation modulo 16 (je demande parce que je suppose que c'est li=C3=A9 =C3= =A0 cette time line; je peux me tromper) ?


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6641f1c04a60f_3334ef33a187989c3-- From MAILER-DAEMON Mon May 13 11:38:49 2024 Return-Path: Date: Mon, 13 May 2024 11:38:49 +0000 From: Olivier Charade via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_cacher_=22partiellemen?= =?UTF-8?Q?t=22_l'indication_de_tempo?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6641fbc97fc1d_3334ef339f08042db"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30197 X-Discourse-Topic-Id: 5707 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/cacher-partiellement-lindication-de-tempo/5707 ----==_mimepart_6641fbc97fc1d_3334ef339f08042db Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour, J'ai trouv=C3=A9 sur le forum la r=C3=A9ponse =C3=A0 "cacher totalement l'ind= ication de tempo" \set Score.tempoHideNote =3D ##t Pour le contexte, la synchro image oblige =C3=A0 passer de 120 =C3=A0 118, pu= is =C3=A0 122. Le chef aura le clic dans l'oreille, pas la peine de mettre ce= tte indication sur la partition. Mais elle reste n=C3=A9cessaire pour le calc= ul du timecode. En revanche, sur un passage de 4/4 =C3=A0 3/2, j'aimerais pouvoir indiquer no= ire =C3=A9gale noire. Je pourrais le faire avec un markup sur le premier temp= s mais j'aime bien le positionnement au dessus de la m=C3=A9trique de \tempo. Y a-t-il une solution? --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/cacher-partiellement-lindication-de-tempo/5707/1). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6641fbc97fc1d_3334ef339f08042db Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Olivier Charade olicha
Mai 13=

Bonjour,
J'ai trouv=C3=A9 sur le forum la r=C3=A9ponse =C3=A0 "cacher totalement l'ind= ication de tempo"
\set Score.tempoHideNote =3D ##t
Pour le contexte, la synchro image oblige =C3=A0 passer de 120 =C3=A0 118, pu= is =C3=A0 122. Le chef aura le clic dans l'oreille, pas la peine de mettre ce= tte indication sur la partition. Mais elle reste n=C3=A9cessaire pour le calc= ul du timecode.
En revanche, sur un passage de 4/4 =C3=A0 3/2, j'aimerais pouvoir indiquer no= ire =C3=A9gale noire. Je pourrais le faire avec un markup sur le premier temp= s mais j'aime bien le positionnement au dessus de la m=C3=A9trique de \tempo.=
Y a-t-il une solution?


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6641fbc97fc1d_3334ef339f08042db-- From MAILER-DAEMON Mon May 13 17:12:06 2024 Return-Path: Date: Mon, 13 May 2024 17:12:06 +0000 From: MartialR via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_cacher_=22partiellemen?= =?UTF-8?Q?t=22_l'indication_de_tempo?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_664249e64ae5b_3334ef33a2c809822"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30198 X-Discourse-Topic-Id: 5707 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/cacher-partiellement-lindication-de-tempo/5707 ----==_mimepart_664249e64ae5b_3334ef33a2c809822 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 bonsoir, ceci r=C3=A9pond =C3=A0 la question (supprimez les notations inutiles)=20 ``` \tempo \markup { "noire =3D noire" \rhythm { 4 } =3D \rhythm { 4 } } ``` --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/cacher-partiellement-lindication-de-tempo/5707/2). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_664249e64ae5b_3334ef33a2c809822 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
MartialR
Mai 13=

bonsoir,

ceci r=C3=A9pond =C3=A0 la question (su= pprimez les notations inutiles)

 \tempo  \markup { "noire =3D =
noire" \rhythm { 4 } =3D \rhythm { 4 } }

Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_664249e64ae5b_3334ef33a2c809822-- From MAILER-DAEMON Mon May 13 18:46:28 2024 Return-Path: Date: Mon, 13 May 2024 18:46:28 +0000 From: Olivier Charade via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_cacher_=22partiellemen?= =?UTF-8?Q?t=22_l'indication_de_tempo?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_664260043e8e1_3334ef33a2c815127"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30199 X-Discourse-Topic-Id: 5707 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/cacher-partiellement-lindication-de-tempo/5707 ----==_mimepart_664260043e8e1_3334ef33a2c815127 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 La question est d'avoir =C3=A7a =E2=80=9Cvisible=E2=80=9C en m=C3=AAme temps = que, par exemple, un \tempo 4 =3D 122 invisible pour que le d=C3=A9compte de = temps en secondes et images soit correct (parce qu'en vrai la noire n'=C3=A9g= ale pas tout =C3=A0 fait la noire). --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/cacher-partiellement-lindication-de-tempo/5707/3). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_664260043e8e1_3334ef33a2c815127 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Olivier Charade olicha
Mai 13=

La question est d'avoir =C3=A7a =E2=80=9Cvisible=E2=80=9C en m=C3=AAme= temps que, par exemple, un \tempo 4 =3D 122 invisible pour que le d=C3=A9com= pte de temps en secondes et images soit correct (parce qu'en vrai la noire n'= =C3=A9gale pas tout =C3=A0 fait la noire).


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_664260043e8e1_3334ef33a2c815127-- From MAILER-DAEMON Mon May 13 18:57:31 2024 Return-Path: Date: Mon, 13 May 2024 18:57:31 +0000 From: xavier via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_cacher_=22partiellemen?= =?UTF-8?Q?t=22_l'indication_de_tempo?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6642629ad0534_3334ef339dc820475"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30200 X-Discourse-Topic-Id: 5707 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/cacher-partiellement-lindication-de-tempo/5707 ----==_mimepart_6642629ad0534_3334ef339dc820475 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Ben =C3=A7a fonctionne (le markup est imprim=C3=A9 mais pas le "noire =3D 122= ") : ``` \set Score.tempoHideNote =3D ##t \tempo \markup { "noire =3D noire" \rhythm { 4 } =3D \rhythm { 4 } } 4 =3D 122 ``` --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/cacher-partiellement-lindication-de-tempo/5707/4). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6642629ad0534_3334ef339dc820475 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
xavier xavier
Mai 13=

Ben =C3=A7a fonctionne (le markup est imprim=C3=A9 mais pas le "noire = =3D 122") :

\set Score.tempoHideNote =3D #=
#t
\tempo \markup { "noire =3D noire" \rhythm { 4 } =3D \rhythm { 4 } } 4 =3D 122

Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6642629ad0534_3334ef339dc820475-- From MAILER-DAEMON Mon May 13 19:08:58 2024 Return-Path: Date: Mon, 13 May 2024 19:08:58 +0000 From: MartialR via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_cacher_=22partiellemen?= =?UTF-8?Q?t=22_l'indication_de_tempo?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_66426549d0dfa_3334ef33a2c825728"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30201 X-Discourse-Topic-Id: 5707 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/cacher-partiellement-lindication-de-tempo/5707 ----==_mimepart_66426549d0dfa_3334ef33a2c825728 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 comme ceci=20 \tempo \markup ....=20 \tempo 4=3D122=20 ouvrez le fichier midi avec musecore ou tuxguitar ou NoteWortyComposer ??=20 ``` \score {=20 \new Staff {=20 \set Score.tempoHideNote =3D ##t \tempo \markup { "noire =3D noire" \rhythm { 4 } =3D \rhythm { 4 } } \tempo 4 =3D122 c'1 }=20 \layout { } \midi { } } ``` ![image|420x321](upload://gom0mLC7YuzcM5glC5QcZapccak.png) --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/cacher-partiellement-lindication-de-tempo/5707/5). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_66426549d0dfa_3334ef33a2c825728 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
MartialR
Mai 13=

comme ceci
\tempo \markup ....
\tempo 4=3D122
ouvrez le fichier midi avec musecore ou tuxguitar ou NoteWortyComposer ??

\score {=20
 \new Staff  {=20
    \set Score.tempoHideNote =3D ##t
    \tempo \markup { "noire =3D noire" \rhythm { 4 } =3D \rhythm { 4 } }
    \tempo 4 =3D122
    c'1
}=20
\layout {  }
\midi {  }
}


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_66426549d0dfa_3334ef33a2c825728-- From MAILER-DAEMON Mon May 13 19:14:47 2024 Return-Path: Date: Mon, 13 May 2024 19:14:47 +0000 From: MartialR via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_cacher_=22partiellemen?= =?UTF-8?Q?t=22_l'indication_de_tempo?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_664266a72f518_3334ef33a18831084"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30202 X-Discourse-Topic-Id: 5707 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/cacher-partiellement-lindication-de-tempo/5707 ----==_mimepart_664266a72f518_3334ef33a18831084 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 d=C3=A9sol=C3=A9 je n'avais pas compris=20 il faut noir =3D noire et 4 =3D 122 --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/cacher-partiellement-lindication-de-tempo/5707/6). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_664266a72f518_3334ef33a18831084 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
MartialR
Mai 13=

d=C3=A9sol=C3=A9 je n'avais pas compris
il faut noir =3D noire et 4 =3D 122


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_664266a72f518_3334ef33a18831084-- From MAILER-DAEMON Mon May 13 19:16:56 2024 Return-Path: Date: Mon, 13 May 2024 19:16:56 +0000 From: MartialR via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_cacher_=22partiellemen?= =?UTF-8?Q?t=22_l'indication_de_tempo?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_66426728eeaa_3334ef33a188363b1"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30203 X-Discourse-Topic-Id: 5707 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/cacher-partiellement-lindication-de-tempo/5707 ----==_mimepart_66426728eeaa_3334ef33a188363b1 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Et ainsi ?=20 ``` {=20 \set Score.tempoHideNote =3D ##t \tempo "noire =3D noire" 4 =3D122=20 \set Score.tempoHideNote =3D##f c'1 \set Score.tempoHideNote =3D ##t \tempo "noire =3D noire" 4 =3D122=20 } ``` --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/cacher-partiellement-lindication-de-tempo/5707/7). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_66426728eeaa_3334ef33a188363b1 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
MartialR
Mai 13=

Et ainsi ?

   {=20
    \set Score.tempoHideNote =3D ##t
    \tempo "noire =3D noire" 4 =3D122=20
    \set Score.tempoHideNote =3D##f
     c'1
      \set Score.tempoHideNote =3D ##t
    \tempo "noire =3D noire" 4 =3D122=20
}

Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_66426728eeaa_3334ef33a188363b1-- From MAILER-DAEMON Mon May 13 19:27:41 2024 Return-Path: Date: Mon, 13 May 2024 19:27:41 +0000 From: =?UTF-8?B?U8OpYmFzdGllbiBSaWNoYXJkIHZpYSBMaWx5UG9uZA==?= To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_bar_line_et_changement_de?= =?UTF-8?Q?_signature?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_664269ad790d_3334ef33a18841627"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30204 X-Discourse-Topic-Id: 5706 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/bar-line-et-changement-de-signature/5706 ----==_mimepart_664269ad790d_3334ef33a18841627 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonsoir Martial, Navr=C3=A9 pour le temps r=C3=A9ponse :sweat_smile: Cette solution marche impeccable :+1: Bonne soir=C3=A9e --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/bar-line-et-changement-de-signature/5706/3). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_664269ad790d_3334ef33a18841627 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
S=C3=A9bastien Richar= d Sebastien_Richard
Mai 13=

Bonsoir Martial,

Navr=C3=A9 pour le temps r=C3=A9ponse <= img src=3D"https://lilypond.community/images/emoji/twitter/sweat_smile.png?v= =3D12" title=3D":sweat_smile:" alt=3D":sweat_smile:" loading=3D"lazy" width= =3D"20" height=3D"20">

Cette solution marche impeccable 3D":+1:"

Bonne soir=C3=A9e


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_664269ad790d_3334ef33a18841627-- From MAILER-DAEMON Mon May 13 20:37:06 2024 Return-Path: Date: Mon, 13 May 2024 20:37:06 +0000 From: MartialR via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_cacher_=22partiellemen?= =?UTF-8?Q?t=22_l'indication_de_tempo?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_664279f2725dc_3334ef33a18847196"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30205 X-Discourse-Topic-Id: 5707 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/cacher-partiellement-lindication-de-tempo/5707 ----==_mimepart_664279f2725dc_3334ef33a18847196 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Je ne vois pas d'autres solution que markup positionn=C3=A9 avec translate ``` {=20 \set Score.tempoHideNote =3D ##t % tempo cach=C3=A9 \tempo 4=3D60 c'1=20 %changement de tempo cach=C3=A9 \tempo 4=3D122 %noire =3D 122 en markup <>^\markup \translate #'(0 . 2.8) { \raise #0.5 \note {4} #1 "=3D 122" \raise #0.5 \note { 4 } #1 " =3D " \raise #0.5 \note {4} #1 \hspace #4 =20 } c'1 }=20 ``` --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/cacher-partiellement-lindication-de-tempo/5707/8). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_664279f2725dc_3334ef33a18847196 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
MartialR
Mai 13=

Je ne vois pas d'autres solution que markup
positionn=C3=A9 avec translate

   {=20
     \set Score.tempoHideNote =3D ##t
   % tempo cach=C3=A9
   \tempo 4=3D60
  c'1=20
  %changement de tempo cach=C3=A9
  \tempo   4=3D122
  %noire =3D 122 en markup
 <>^\markup  \translate #'(0 . 2.8)  {
  \raise #0.5 \note {4} #1 "=3D 122"  \raise #0.5 \note { 4 } #1
      " =3D "
    \raise #0.5  \note {4} #1 \hspace #4 =20
    }
    c'1
}=20

Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_664279f2725dc_3334ef33a18847196-- From MAILER-DAEMON Mon May 13 20:43:01 2024 Return-Path: Date: Mon, 13 May 2024 20:43:01 +0000 From: Olivier Charade via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_cacher_=22partiellemen?= =?UTF-8?Q?t=22_l'indication_de_tempo?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_66427b556319e_3334ef33a188524f1"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30206 X-Discourse-Topic-Id: 5707 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/cacher-partiellement-lindication-de-tempo/5707 ----==_mimepart_66427b556319e_3334ef33a188524f1 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Je ne comprends pas pourquoi, si =C3=A7a marche pour toi, le copier coller ne= fonctionne pas. Il y a des caract=C3=A8res cach=C3=A9s quand on r=C3=A9cup= =C3=A8re sur le forum? ``` Erreur : type d'argument erron=C3=A9 pour 1. Attendait music, (ly:make-duration 2) trouv=C3=A9. \tempo \markup { \rhythm=20 { 4 } =3D \rhythm { 4 } } 4 =3D 122 ERROR: In procedure ly:parse-file: In procedure reverse!: Wrong type argument in position 1: (# . #= f) ``` --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/cacher-partiellement-lindication-de-tempo/5707/9). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_66427b556319e_3334ef33a188524f1 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Olivier Charade olicha
Mai 13=

Je ne comprends pas pourquoi, si =C3=A7a marche pour toi, le copier co= ller ne fonctionne pas. Il y a des caract=C3=A8res cach=C3=A9s quand on r=C3= =A9cup=C3=A8re sur le forum?

Erreur : type d'argument erron=
=C3=A9 pour 1.
  Attendait music, (ly:make-duration 2) trouv=C3=A9.
  \tempo \markup { \rhythm=20
                           { 4 } =3D \rhythm { 4 } } 4 =3D 122
ERROR: In procedure ly:parse-file:
In procedure reverse!: Wrong type argument in position 1: (#<Duration 4 &g=
t; . #f)

Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_66427b556319e_3334ef33a188524f1-- From MAILER-DAEMON Mon May 13 21:14:03 2024 Return-Path: Date: Mon, 13 May 2024 21:14:03 +0000 From: MartialR via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_cacher_=22partiellemen?= =?UTF-8?Q?t=22_l'indication_de_tempo?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6642829adf25c_3334ef33a1885771"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30207 X-Discourse-Topic-Id: 5707 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/cacher-partiellement-lindication-de-tempo/5707 ----==_mimepart_6642829adf25c_3334ef33a1885771 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 en version 2.24 =C3=A7a ne marche pas=20 ``` \tempo \markup { \rhythm { 4 } =3D \rhythm { 4 } }=20 ``` c'est pour la version 2.25.15 version de d=C3=A9veloppement =C3=A7a vaut la peine de mettre =C3=A0 jour, aucun soucis --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/cacher-partiellement-lindication-de-tempo/5707/10). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6642829adf25c_3334ef33a1885771 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
MartialR
Mai 13=

en version 2.24 =C3=A7a ne marche pas

\tempo \markup { \rhythm     {=
 4 } =3D \rhythm { 4 } }=20

c'est pour la version 2.25.15 version d= e d=C3=A9veloppement
=C3=A7a vaut la peine de mettre =C3=A0 jour, aucun soucis


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6642829adf25c_3334ef33a1885771-- From MAILER-DAEMON Sat May 18 13:09:05 2024 Return-Path: Date: Sat, 18 May 2024 13:09:04 +0000 From: Bernard Meylan via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Donner_un_espacement_fixe?= =?UTF-8?Q?_aux_appogiatures?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6648a870b5655_2a13534014747"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30208 X-Discourse-Topic-Id: 5708 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/donner-un-espacement-fixe-aux-appogiatures/5708 ----==_mimepart_6648a870b5655_2a13534014747 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour =C3=A0 tout le groupe! Je cherche =C3=A0 fixer, pour toute la pi=C3=A8ce =C3=A0 saisir, l'espacement= entre deux notes d'une appogiature. LilyPond les traite plus ou moins comme = des notes =C2=ABnormales=C2=BB en leur attribuant un espacement qui varie ave= c les possibilit=C3=A9s de la page. Par exemple: ``` \version "2.24.2" \new Staff \relative c'' { \time 6/4 \repeat unfold 30 {\appoggiatura {c32 d} c4} } ``` chez moi, la premi=C3=A8re ligne comporte des appogiatures qui sont davantage= espac=C3=A9es que dans la seconde ligne. Une note d'agr=C3=A9ment (appogiature, grace ou autre) n'a pas de =C2=ABvaleu= r=C2=BB =C3=A0 proprement parler, donc: est-il possible de =C2=ABfiger=C2=BB = une fois pour toutes cet espacement, peu importe le nombre de notes =C3=A0 l'= int=C3=A9rieur de l'appogiature? Cordialement. Bernard --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/donner-un-espacement-fixe-aux-appogiatures/5708/1). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6648a870b5655_2a13534014747 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Bernard Meylan bameylan
Mai 18=

Bonjour =C3=A0 tout le groupe!

Je cherche =C3=A0 fixer, pour toute la = pi=C3=A8ce =C3=A0 saisir, l'espacement entre deux notes d'une appogiature. Li= lyPond les traite plus ou moins comme des notes =C2=ABnormales=C2=BB en leur = attribuant un espacement qui varie avec les possibilit=C3=A9s de la page.

Par exemple:

\version "2.24.2"

\new Staff \relative c'' {
  \time 6/4
    \repeat unfold 30 {\appoggiatura {c32 d} c4}
  }

chez moi, la premi=C3=A8re ligne compor= te des appogiatures qui sont davantage espac=C3=A9es que dans la seconde lign= e.
Une note d'agr=C3=A9ment (appogiature, grace ou autre) n'a pas de =C2=ABvaleu= r=C2=BB =C3=A0 proprement parler, donc: est-il possible de =C2=ABfiger=C2=BB = une fois pour toutes cet espacement, peu importe le nombre de notes =C3=A0 l'= int=C3=A9rieur de l'appogiature?

Cordialement.

Bernard


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6648a870b5655_2a13534014747-- From MAILER-DAEMON Sat May 18 15:12:46 2024 Return-Path: Date: Sat, 18 May 2024 15:12:46 +0000 From: MartialR via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Donner_un_espacement_fixe?= =?UTF-8?Q?_aux_appogiatures?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6648c56e82683_2a134e6820365"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30209 X-Discourse-Topic-Id: 5708 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/donner-un-espacement-fixe-aux-appogiatures/5708 ----==_mimepart_6648c56e82683_2a134e6820365 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour, on peut faire avec NonMusicalPaperColumn.padding=20 mais il y a d'autre moyen=20 je n'ai pas tout explor=C3=A9 : [https://lilypond.org/doc/v2.24/Documentation/notation/horizontal-spacing-ove= rview](https://lilypond.org/doc/v2.24/Documentation/notation/horizontal-spaci= ng-overview) ``` \version "2.24.2" \new Staff \relative c'' { \override Score.NonMusicalPaperColumn.padding =3D #1 \repeat unfold 30 {\appoggiatura {c32 d} c4} } ``` --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/donner-un-espacement-fixe-aux-appogiatures/5708/2). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6648c56e82683_2a134e6820365 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
MartialR
Mai 18=

Bonjour,
on peut faire avec NonMusicalPaperColumn.padding
mais il y a d'autre moyen
je n'ai pas tout explor=C3=A9 :
https://lilypond.org/doc/v2.24/Document= ation/notation/horizontal-spacing-overview

\version "2.24.2"

\new Staff \relative c'' {
   \override Score.NonMusicalPaperColumn.padding =3D #1
    \repeat unfold 30 {\appoggiatura {c32 d} c4}
  }


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6648c56e82683_2a134e6820365-- From MAILER-DAEMON Sat May 18 17:47:21 2024 Return-Path: Date: Sat, 18 May 2024 17:47:21 +0000 From: xavier via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Donner_un_espacement_fixe?= =?UTF-8?Q?_aux_appogiatures?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6648e9a948853_2a135c14257c6"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30210 X-Discourse-Topic-Id: 5708 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/donner-un-espacement-fixe-aux-appogiatures/5708 ----==_mimepart_6648e9a948853_2a135c14257c6 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Salut, Comme mentionn=C3=A9 dans la [doc](https://lilypond.org/doc/v2.25/Documentati= on/notation/grace-notes.fr.html), `\override Score.SpacingSpanner.strict-grac= e-spacing =3D ##t` permet de d=C3=A9coupler l'espacement des notes d'ornement= des notes principales. > LilyPond commence par espacer les notes normales, puis les ornements sont p= lac=C3=A9s =C3=A0 la gauche de leur note de rattachement. N'est-ce pas en gros le comportement que tu souhaites ? Cordialement, Xavier --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/donner-un-espacement-fixe-aux-appogiatures/5708/3). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6648e9a948853_2a135c14257c6 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
xavier xavier
Mai 18=

Salut,

Comme mentionn=C3=A9 dans la doc, \override Score.SpacingSpanner.strict-grace-spacing = =3D ##t permet de d=C3=A9coupler l'espacement des notes d'ornement des= notes principales.

LilyPond commence par espacer les notes normales, puis les ornements= sont plac=C3=A9s =C3=A0 la gauche de leur note de rattachement.

N'est-ce pas en gros le comportement qu= e tu souhaites ?

Cordialement,
Xavier


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6648e9a948853_2a135c14257c6-- From MAILER-DAEMON Sat May 18 18:31:18 2024 Return-Path: Date: Sat, 18 May 2024 18:31:18 +0000 From: Bernard Meylan via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Donner_un_espacement_fixe?= =?UTF-8?Q?_aux_appogiatures?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6648f3f676f99_2a136574311c8"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30211 X-Discourse-Topic-Id: 5708 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/donner-un-espacement-fixe-aux-appogiatures/5708 ----==_mimepart_6648f3f676f99_2a136574311c8 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Merci =C3=A0 Martial et Xavier. @Xavier: le `\override Score.SpacingSpanner.strict-grace-spacing` va r=C3=A9g= ler, si j'ai bien compris, l'espace entre la note d'attache et son appogiatur= e et pas les notes (au moins deux=E2=80=A6) de l'appogiature elle-m=C3=AAme= =E2=80=A6 j'ai juste, ou pas? @MartialR: le `\override Score.NonMusicalPaperColumn.padding =3D #1` permet d= 'augmenter, et uniquement cela, l'espace entre les notes de l'appogiature (l'= a=C3=A9rer) parce qu'en parcourant toute la page de la doc =C3=A0 laquelle tu= renvoies, on lit la toute derni=C3=A8re phrase: > Il n=E2=80=99y a aucun moyen de diminuer l=E2=80=99espacement. Donc, pas moyen de resserer les notes de l'appogiature. Cordialement. Bernard --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/donner-un-espacement-fixe-aux-appogiatures/5708/4). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6648f3f676f99_2a136574311c8 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Bernard Meylan bameylan
Mai 18=

Merci =C3=A0 Martial et Xavier.
@Xavier: le \override Score.SpacingSpann= er.strict-grace-spacing va r=C3=A9gler, si j'ai bien compris, l'espace= entre la note d'attache et son appogiature et pas les notes (au moins deux= =E2=80=A6) de l'appogiature elle-m=C3=AAme=E2=80=A6 j'ai juste, ou pas?

\override Score.NonMusicalPaperColumn.padding =3D #1 per= met d'augmenter, et uniquement cela, l'espace entre les notes de l'appogiatur= e (l'a=C3=A9rer) parce qu'en parcourant toute la page de la doc =C3=A0 laquel= le tu renvoies, on lit la toute derni=C3=A8re phrase:

Il n=E2=80=99y a aucun moyen de diminuer l=E2=80=99espacement.

Donc, pas moyen de resserer les notes d= e l'appogiature.

Cordialement.

Bernard

                                                           
=20 =20 =20 ----==_mimepart_6648f3f676f99_2a136574311c8-- From MAILER-DAEMON Sat May 18 18:52:40 2024 Return-Path: Date: Sat, 18 May 2024 18:52:40 +0000 From: xavier via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Donner_un_espacement_fixe?= =?UTF-8?Q?_aux_appogiatures?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6648f8f87d43a_2a135c14365a0"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30212 X-Discourse-Topic-Id: 5708 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/donner-un-espacement-fixe-aux-appogiatures/5708 ----==_mimepart_6648f8f87d43a_2a135c14365a0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 [quote=3D"bameylan, post:4, topic:5708"] le `\override Score.SpacingSpanner.strict-grace-spacing` va r=C3=A9gler, si j= 'ai bien compris, l'espace entre la note d'attache et son appogiature et pas = les notes (au moins deux=E2=80=A6) de l'appogiature elle-m=C3=AAme=E2=80=A6 j= 'ai juste, ou pas? [/quote] Oui, je pense. Cela dit, jouer sur ``` \override Score.GraceSpacing.shortest-duration-space =3D 1 \override Score.GraceSpacing.spacing-increment =3D 0.6 \override Score.GraceSpacing.common-shortest-duration =3D #(ly:make-moment 1/= 2) ``` devrait influer sur l'espacement des notes d'ornements entre elles. --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/donner-un-espacement-fixe-aux-appogiatures/5708/5). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6648f8f87d43a_2a135c14365a0 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
xavier xavier
Mai 18=
3D"" bame= ylan:

le \override Score.SpacingSpanner.strict-grace-spacing va r=C3=A9gler, si j'ai bien compris, l'espace entre la note d'attache et= son appogiature et pas les notes (au moins deux=E2=80=A6) de l'appogiature e= lle-m=C3=AAme=E2=80=A6 j'ai juste, ou pas?

Oui, je pense.
Cela dit, jouer sur

\override Score.GraceSpacing.s=
hortest-duration-space =3D 1
\override Score.GraceSpacing.spacing-increment =3D 0.6
\override Score.GraceSpacing.common-shortest-duration =3D #(ly:make-moment 1/=
2)

devrait influer sur l'espacement des no= tes d'ornements entre elles.


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6648f8f87d43a_2a135c14365a0-- From MAILER-DAEMON Mon May 20 20:56:52 2024 Return-Path: Date: Mon, 20 May 2024 20:56:52 +0000 From: Christophe via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_664bb91458fb7_2a1367cc426f4"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30213 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_664bb91458fb7_2a1367cc426f4 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour=20 Ca avance doucement, mais ce n'est pas fini. @ Xavier : je confirme que c'=C3=A9tait bien les notes invisibles =C3=A0 une = mauvaise hauteur qui augmentait l'=C3=A9cartement des port=C3=A9es. @ Jean : probl=C3=A8me d'=C3=A9cartement =C3=A9vacu=C3=A9 par votre code. Malheureusement, je ne g=C3=A8re pas encore correctement les commandes de cit= ations. Ci-dessous un extrait de ma partition. Je voudrais citer cette fois d= eux mesures de hautbois avant les notes finales des fl=C3=BBtes. \version "2.24.1" \tagGroup quote,noQuote \header { title =3D "Pr=C3=A9lude" } global =3D { \numericTimeSignature \time 3/4 \tempo "Assez lent"=20 } scoreAFlute =3D \relative c'' { \global R2.*7 =20 \break r8 e'\pp( ~e8 d e4~ e4 d8\< b a b\! e4\> d8 g, b4~\! b4 a8\< g e g=20 b d!\! b4. a8 b8^\markup {\bold Ralenti} e,\> g2\! ) | R2.*7^\markup {\bold {au Mouvt}} R2.*2^\markup {\bold {Ralenti}} =20 \tag part { <>^\markup { \tiny "hautbois" } } \cueDuring "scoreAOboe" #UP { R2. *2 } %% Les deux mesures pour accuillir la citation de hautbois % R2.*2^\markup {\bold {Tr=C3=A8s lent}} 4\pp\fermata r r \fine } scoreAOboe =3D \relative c'' { \global r8 \p e \( fis d e fis b4 g d ~ d4 e g, \) \break =20 b2\( c!4=20 e,4. g8 e4 \) | =20 b'4.\< \( d8 \noBeam d c \! e,4 b'4. e,8=20 e4 \) r r | =20 R2. *6 =20 <<\new Voice =3D "premi=C3=A8re" \relative {\voiceOne r4 r r8 ^"1." \stemDown g''=20 g2^\markup {\bold {au Mouvt}} \p f4 \break \stemNeutral a,!4. (\stemUp c= !8=20 \stemNeutral a4) g'4. (f8 g c,) a4. (\stemUp c!8 \stemNeutral a4) } \new Voice =3D "seconde" \relative {\voiceTwo s2. s dis'4. (d!8 dis4) s2. dis4. (d!8 dis4) }>> | R2. *3 r4 r r8 \pp e'8 % ^\markup {\bold {Tr=C3=A8s lent}} ( fis d e fis b4 ~b4 ) \fermata r r \bar".." | \fine } =20 scoreAFlutePart =3D \new Staff \with { instrumentName =3D "2 fl=C3=BBtes" midiInstrument =3D "flute" }=20 { \tag conducteur \set Staff.shortInstrumentName =3D "Fl" \scoreAFlute } scoreAOboePart =3D \new Staff \with { instrumentName =3D "2 hautbois" midiInstrument =3D "oboe" }=20 { \tag conducteur \set Staff.shortInstrumentName =3D "Ob" \scoreAOboe } \addQuote "scoreAOboePart" \keepWithTag quote \scoreAOboe \score { =20 \removeWithTag #'part \killCues \new StaffGroup <<=20 \scoreAFlutePart \scoreAOboePart >> =20 =20 =20 =20 } % 2 fl=C3=BBtes \bookpart { \header {subtitle =3D "2 fl=C3=BBtes"} \paper { system-separator-markup =3D ##f system-system-spacing.basic-distance =3D #25=20 } \score {\new StaffGroup { \removeWithTag conducteur <<{\scoreAFlutePart} >>} =20 \layout {} \midi {\tempo 4=3D100}} } =20 % 2 haut-bois \bookpart { \header {subtitle =3D "2 haut-bois"} \paper { system-separator-markup =3D ##f system-system-spacing.basic-distance =3D #25=20 } \score {\new StaffGroup { \removeWithTag conducteur <<{\scoreAOboePart} >>} \layout {} \midi {\tempo 4=3D100}} } Message d'erreur : document.ly:35:4: Avertissement : impossible de trouver la citation de musiqu= e =C2=AB "scoreAOboe" =C2=BB \cueDuring "scoreAOboe" #UP { R2. *2 } Un oubli, mais lequel ? Merci beaucoup pour votre aide. Cordialement. Christophe --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/21). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_664bb91458fb7_2a1367cc426f4 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Christophe Christophe
Mai 20=

Bonjour
Ca avance doucement, mais ce n'est pas fini.
@ Xavier : je confirme que c'=C3=A9tait bien les notes invisibles =C3=A0 une = mauvaise hauteur qui augmentait l'=C3=A9cartement des port=C3=A9es.

@ Jean : probl=C3=A8me d'=C3=A9cartemen= t =C3=A9vacu=C3=A9 par votre code.
Malheureusement, je ne g=C3=A8re pas encore correctement les commandes de cit= ations. Ci-dessous un extrait de ma partition. Je voudrais citer cette fois d= eux mesures de hautbois avant les notes finales des fl=C3=BBtes.

\version "2.24.1"
\tagGroup quote,noQuote

\header {
title =3D "Pr=C3=A9lude"
}

global =3D {
\numericTimeSignature
\time 3/4
\tempo "Assez lent"
}

scoreAFlute =3D \relative c'' {
\global
R2.*7

\break
r8 e'\pp( ~e8 d e4~
e4 d8< b a b!
e4> d8 g, b4~!
b4 a8< g e g
b d!! b4. a8
b8^\markup {\bold Ralenti} e,> g2! ) |

R2.*7^\markup {\bold {au Mouvt}}
R2.*2^\markup {\bold {Ralenti}}

\tag part { <>^\markup { \tiny "h= autbois" } }
\cueDuring "scoreAOboe" #UP { R2. *2 }
%% Les deux mesures pour accuillir la citation de hautbois
% R2.*2^\markup {\bold {Tr=C3=A8s lent}}
4\pp\fermata r r
\fine
}

scoreAOboe =3D \relative c'' {
\global
r8 \p e ( fis d e fis
b4 g d ~
d4 e g, ) \break

b2( c!4
e,4. g8 e4 ) |

b'4.< ( d8 \noBeam d c !
e,4 b'4. e,8
e4 ) r r |

R2. *6

<<\new Voice =3D "premi=C3=A8re"<= br> \relative {\voiceOne r4 r r8 ^"1." \stemDown g''
g2^\markup {\bold {au Mouvt}} \p f4 \break \stemNeutral a,!4. (\stemUp c!= 8
\stemNeutral a4) g'4. (f8 g c,) a4. (\stemUp c!8 \stemNeutral a4) }
\new Voice =3D "seconde"
\relative {\voiceTwo s2. s dis'4. (d!8 dis4) s2. dis4. (d!8 dis4) }>&g= t; |

R2. *3
r4 r r8 \pp e'8 % ^\markup {\bold {Tr=C3=A8s lent}}
( fis d e fis b4 ~b4 ) \fermata r r \bar".." |
\fine
}

scoreAFlutePart =3D \new Staff \with {<= br> instrumentName =3D "2 fl=C3=BBtes"
midiInstrument =3D "flute"
}
{ \tag conducteur \set Staff.shortInstrumentName =3D "Fl"
\scoreAFlute
}

scoreAOboePart =3D \new Staff \with { instrumentName =3D "2 hautbois"
midiInstrument =3D "oboe"
}
{ \tag conducteur \set Staff.shortInstrumentName =3D "Ob"
\scoreAOboe
}

\addQuote "scoreAOboePart" \keepWithTag= quote \scoreAOboe

\score {

\removeWithTag #'part \killCues \new St= affGroup <<
\scoreAFlutePart
\scoreAOboePart

}

% 2 fl=C3=BBtes
\bookpart {
\header {subtitle =3D "2 fl=C3=BBtes"}
\paper {
system-separator-markup =3D ##f
system-system-spacing.basic-distance =3D #25
}
\score {\new StaffGroup {
\removeWithTag conducteur <<{\scoreAFlutePart} >>}

       \layout {}
       \midi {\tempo 4=3D100}}

}

% 2 haut-bois
\bookpart {
\header {subtitle =3D "2 haut-bois"}
\paper {
system-separator-markup =3D ##f
system-system-spacing.basic-distance =3D #25
}
\score {\new StaffGroup {
\removeWithTag conducteur <<{\scoreAOboePart} >>}
\layout {}
\midi {\tempo 4=3D100}}
}

Message d'erreur :
document.ly:35:4: Avertissement : impossible de trouver la citation de musiqu= e =C2=AB "scoreAOboe" =C2=BB
\cueDuring "scoreAOboe" #UP { R2. *2 }

Un oubli, mais lequel ?
Merci beaucoup pour votre aide.
Cordialement.
Christophe


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_664bb91458fb7_2a1367cc426f4-- From MAILER-DAEMON Tue May 21 06:31:25 2024 Return-Path: Date: Tue, 21 May 2024 06:31:25 +0000 From: xavier via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_664c3fbd15904_2a134e68480fe"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30214 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_664c3fbd15904_2a134e68480fe Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour, Sans essayer de nettoyer le code envoy=C3=A9 pour avoir quelque chose de comp= ilable (il serait pr=C3=A9f=C3=A9rable de mettre tout le code dans une balise= code (texte pr=C3=A9format=C3=A9) ou de joindre le fichier directement). Je vois `\cueDuring "scoreAOboe"` mais `\addQuote "scoreAOboePart"`, il faut = le m=C3=AAme nom pour les deux, donc probablement changer en `\addQuote "scor= eAOboe"`. C'est d'ailleurs le sens du message d'erreur. Cordialement, Xavier --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/22). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_664c3fbd15904_2a134e68480fe Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
xavier xavier
Mai 21=

Bonjour,

Sans essayer de nettoyer le code envoy= =C3=A9 pour avoir quelque chose de compilable (il serait pr=C3=A9f=C3=A9rable= de mettre tout le code dans une balise code (texte pr=C3=A9format=C3=A9) ou = de joindre le fichier directement).

Je vois \cueDuring "scoreAOboe" mais <= code style=3D"background-color: #f9f9f9; padding: 2px 5px;" dm=3D"bg">\addQuo= te "scoreAOboePart", il faut le m=C3=AAme nom pour les deux, donc prob= ablement changer en \addQuote "scoreAOboe".
C'est d'ailleurs le sens du message d'erreur.

Cordialement,
Xavier


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_664c3fbd15904_2a134e68480fe-- From MAILER-DAEMON Wed May 22 08:59:27 2024 Return-Path: Date: Wed, 22 May 2024 08:59:27 +0000 From: Christophe via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_664db3ef28a3_2a13534053488"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30215 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_664db3ef28a3_2a13534053488 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour, Merci Xavier, c'=C3=A9tait bien =C3=A7a. En continuant la constitution des parties s=C3=A9par=C3=A9es une erreur appar= a=C3=AEt dans le code refait par Jean AS. Erreur due =C3=A0 un probl=C3=A8me = de liaison entre voix (?), sans cons=C3=A9quence pour l'instant puisque la co= mpilation arrive =C3=A0 son terme. Le bout du code : \left s8 \voiceTwo a,,^( e' g c e \right \oneVoice g8 c) ~c2 2\arpeggio r4 2 \arpeggio r4 2 \< \arpeggio r4 \! 2 r4 =20 \left s8 \voiceOne d,, \> ( a' d e fis \right \oneVoice a8 d e fis a d ) \! L'erreur concerne la derni=C3=A8re ligne. La premi=C3=A8re occurence de \voic= eTwo r=C3=A9dig=C3=A9e de la m=C3=AAme fa=C3=A7on ne pose pas de probl=C3=A8m= e. Le message : 601:29: Avertissement : impossible de terminer slur \oneVoice a8 d e fis a d=20 ) \! Merci pour votre =C3=A9clairage. Bien cordialement. Christophe --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/23). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_664db3ef28a3_2a13534053488 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Christophe Christophe
Mai 22=

Bonjour,
Merci Xavier, c'=C3=A9tait bien =C3=A7a.
En continuant la constitution des parties s=C3=A9par=C3=A9es une erreur appar= a=C3=AEt dans le code refait par Jean AS. Erreur due =C3=A0 un probl=C3=A8me = de liaison entre voix (?), sans cons=C3=A9quence pour l'instant puisque la co= mpilation arrive =C3=A0 son terme.

Le bout du code :
\left
s8
\voiceTwo a,,^( e' g c e \right
\oneVoice g8 c) ~c2

<d, fis b>2\arpeggio r4
2 \arpeggio r4
2 < \arpeggio r4 !
2 r4

\left
s8
\voiceOne d,, > ( a' d e fis \right
\oneVoice a8 d e fis a d ) !

L'erreur concerne la derni=C3=A8re lign= e. La premi=C3=A8re occurence de \voiceTwo r=C3=A9dig=C3=A9e de la m=C3=AAme = fa=C3=A7on ne pose pas de probl=C3=A8me.

Le message :
601:29: Avertissement : impossible de terminer slur
\oneVoice a8 d e fis a d
) !

Merci pour votre =C3=A9clairage.
Bien cordialement.
Christophe


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_664db3ef28a3_2a13534053488-- From MAILER-DAEMON Wed May 22 11:52:21 2024 Return-Path: Date: Wed, 22 May 2024 11:52:21 +0000 From: Jean Abou Samra via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_664ddc751d154_2a1353405899c"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30216 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_664ddc751d154_2a1353405899c Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour, Difficile de dire sur un extrait, pourriez-vous poster le code complet ? Pensez =C3=A0 utiliser le bouton ![image|29x31](upload://7O0QVGbZFbwlszk9Y4E= u2Rwmqw6.png) pour que la syntaxe LilyPond ne soit pas confondue par le forum= avec de la syntaxe Markdown (jusqu'ici, j'ai =C3=A9dit=C3=A9 vos messages po= ur corriger =C3=A7a). --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/24). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_664ddc751d154_2a1353405899c Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Jean Abou Samra jeanas
Mai 22=

Bonjour,

Difficile de dire sur un extrait, pourr= iez-vous poster le code complet ?

Pensez =C3=A0 utiliser le bouton 3D"image" pour que la syntaxe LilyPond n= e soit pas confondue par le forum avec de la syntaxe Markdown (jusqu'ici, j'a= i =C3=A9dit=C3=A9 vos messages pour corriger =C3=A7a).


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_664ddc751d154_2a1353405899c-- From MAILER-DAEMON Wed May 22 20:24:38 2024 Return-Path: Date: Wed, 22 May 2024 20:24:38 +0000 From: Christophe via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_664e548669f0e_2a136574643dc"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30217 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_664e548669f0e_2a136574643dc Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour,=20 Voici le code complet en tout cas suffisant pour que le message d'erreur appa= raisse. Merci pour votre analyse. ``` \version "2.24.1" \tagGroup #'(conducteur) \tagGroup quote,noQuote \header { title =3D "Pr=C3=A9lude" } left =3D \tag noQuote \change Staff =3D "left" right =3D \tag noQuote \change Staff =3D "right" global =3D { \numericTimeSignature \time 3/4 \tempo "Assez lent" 4=3D60 =20 } scoreAFlute =3D \relative c'' { \global \compressEmptyMeasures R2.*7 \tag part { <>^\markup { \tiny "harpe" } } \set Score.quotedCueEventTypes =3D #'(note-event rest-event tie-event beam-event tuplet-span-event dynamic-event slur-event) \cueDuringWithClef "scoreAleft" #UP "bass" { R2. } \cueDuring "scoreAright" #UP { R2. } \break r8 e'\pp( ~e8 d e4~ e4 d8\< b a b\! e4\> d8 g, b4~\! b4 a8\< g e g=20 b d!\! b4. a8 b8^\markup {\bold Ralenti} e,\> g2\! ) | R2.*7^\markup {\bold {au Mouvt}} R2.*2^\markup {\bold {Ralenti}} =20 \tag part { <>^\markup { \tiny "hautbois" } } \set Score.quotedCueEventTypes =3D #'(note-event rest-event tie-event beam-event tuplet-span-event dynamic-event slur-event) \cueDuring "scoreAOboe" #UP { R2. *2 } =20 4\pp\fermata r r \fine } scoreAOboe =3D \relative c'' { \global \compressEmptyMeasures r8 \p e \( fis d e fis b4 g d ~ d4 e g, \) \break =20 b2\( c!4=20 e,4. g8 e4 \) | =20 b'4.\< \( d8 \noBeam d c \! e,4 b'4. e,8=20 e4 \) r r | =20 R2. *6 =20 =20 =20 <<\new Voice =3D "premi=C3=A8re" \relative {\voiceOne r4 r r8 ^"1." \stemDown g''=20 g2^\markup {\bold {au Mouvt}} \p f4 \break \stemNeutral a,!4. (\stemUp c= !8=20 \stemNeutral a4) g'4. (f8 g c,) a4. (\stemUp c!8 \stemNeutral a4) } \new Voice =3D "seconde" \relative {\voiceTwo s2. s dis'4. (d!8 dis4) s2. dis4. (d!8 dis4) }>> | R2. *5 r4 r r8 \pp e'8 ^\markup {\bold {Tr=C3=A8s lent}} (fis d e fis b4) ~b4 \fermata r r \bar".." | } =20 scoreAright =3D \relative c'' { \global =20 R2. \left s8 \voiceTwo a,,^( e' g c e \right \oneVoice g8 c) ~c2 2\arpeggio r4 2 \arpeggio r4 2 \< \arpeggio r4 \! 2 r4 =20 \left s8 \voiceOne d,, \> ( a' d e fis \right \oneVoice a8 d e fis a d ) \! 2 r4 \after 64 \< \after 2. \! 2.=20 2 \> 4 \! R2.*3 | 2^\markup {\bold {au Mouvt}}\arpeggio s4 =20 R2. 4\arpeggio s4 s8 s8 =20 R2. 4\arpeggio s4 s4 s2. R2.*2 R2. s2. R2. 2.\fermata \fine | =20 } scoreAleft =3D \relative c'' { \global =20 R2. =20 r8 \p a,, e' g c e \tag noQuote ~e2.^"L.V." r8 e,,( e'4) r r8 a,( e'4) r | =20 r8 e,( e'4) r r8 a,( e'4) r | =20 r8 d, a' d e fis\tag noQuote ~ fis2. =20 s2.*6 =20 r8\p f8([ \right c' g'8] aes4) \left R2. r8 f,([ \right c' f8] g aes) \left R2. r8 g,,( d'! f! b d \right r8 8~ 4) r4 \left R2.*2 r8 \shiftOn a,,,( e' b' c e=20 \right b'8 c^\markup {\bold {Tr=C3=A8s lent}} e b' c4)\! \left R2.*2 \fine | } =20 scoreAFlutePart =3D \new Staff \with { instrumentName =3D "2 fl=C3=BBtes" midiInstrument =3D "flute" % shortInstrumentName =3D "2 fl" } %\scoreAFlute=20 { \tag conducteur \set Staff.shortInstrumentName =3D "Fl" \scoreAFlute } scoreAOboePart =3D \new Staff \with { instrumentName =3D "2 hautbois" midiInstrument =3D "oboe" % shortInstrumentName =3D "2 ob" } %\scoreAOboe { \tag conducteur \set Staff.shortInstrumentName =3D "Ob" \scoreAOboe } scoreAHarpePart =3D \new PianoStaff \with { instrumentName =3D "Harpe" % shortInstrumentName =3D "Harpe" }{\tag conducteur \set PianoStaff.shortInstrumentName =3D "Hp" << \new Staff =3D "right" \with { midiInstrument =3D "orchestral harp" } \scoreAright \new Staff =3D "left" \with { midiInstrument =3D "orchestral harp" } { \clef bass \scoreAleft } >> } \addQuote "scoreAright" \keepWithTag quote \scoreAright \addQuote "scoreAleft" \keepWithTag quote \scoreAleft \addQuote "scoreAOboe" \keepWithTag quote \scoreAOboe \layout { \override Score.BarNumber.break-visibility =3D #end-of-line-invisible \set Score.barNumberVisibility =3D #(every-nth-bar-number-visible 5) \override Voice.Slur.details.edge-attraction-factor =3D 10 } \score { \removeWithTag #'part \killCues \new StaffGroup =20 << =20 \new StaffGroup=20 <<=20 \scoreAFlutePart \scoreAOboePart>> =20 =20 \scoreAHarpePart >> =20 \layout { \context { \Staff \RemoveEmptyStaves } \context { \Score \override StaffGrouper.staff-staff-spacing.padding =3D #3 }} =20 =20 \midi { \tempo 4.=3D80 }=20 } % 2 fl=C3=BBtes \bookpart { =20 \header {subtitle =3D "2 fl=C3=BBtes"} \paper { system-separator-markup =3D ##f system-system-spacing.basic-distance =3D #25=20 } \score {\new StaffGroup { \removeWithTag conducteur <<{\scoreAFlutePart} >>} =20 \layout {} \midi {\tempo 4=3D100}} } % 2 haut-bois \bookpart { \header {subtitle =3D "2 hautbois"} \paper { system-separator-markup =3D ##f system-system-spacing.basic-distance =3D #25=20 } \score {\new StaffGroup { \removeWithTag conducteur <<{\scoreAOboePart} >>} \layout {} \midi {\tempo 4=3D100}} } % Harpe \bookpart { \header {subtitle =3D "Harpe"} \paper { system-separator-markup =3D ##f system-system-spacing.basic-distance =3D #25=20 } \score {\new StaffGroup { \removeWithTag conducteur <<{\scoreAHarpePart} >>} \layout {} \midi {\tempo 4=3D100}} } ``` --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/25). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_664e548669f0e_2a136574643dc Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Christophe Christophe
Mai 22=

Bonjour,
Voici le code complet en tout cas suffisant pour que le message d'erreur appa= raisse.
Merci pour votre analyse.

\version "2.24.1"

\tagGroup #'(conducteur)
\tagGroup quote,noQuote

\header {
  title =3D "Pr=C3=A9lude"
}

left =3D \tag noQuote \change Staff =3D "left"
right =3D \tag noQuote \change Staff =3D "right"

global =3D {
  \numericTimeSignature
  \time 3/4
  \tempo "Assez lent" 4=3D60  =20
}

scoreAFlute =3D \relative c'' {
  \global
  \compressEmptyMeasures


R2.*7
  \tag part { <>^\markup { \tiny "harpe" } }
   \set Score.quotedCueEventTypes =3D #'(note-event rest-event tie-event
                                      beam-event tuplet-span-event
                                      dynamic-event slur-event)
  \cueDuringWithClef "scoreAleft" #UP "bass" { R2. }
  \cueDuring "scoreAright" #UP { R2. }

  \break
  r8  e'\pp( ~e8 d e4~
  e4 d8\< b a b\!
  e4\> d8 g, b4~\!
  b4 a8\< g e g=20
  b d!\!  b4. a8
  b8^\markup {\bold Ralenti} e,\> g2\! ) |

  R2.*7^\markup {\bold {au Mouvt}}
  R2.*2^\markup {\bold {Ralenti}}
 =20
   \tag part { <>^\markup { \tiny "hautbois" } }
    \set Score.quotedCueEventTypes =3D #'(note-event rest-event tie-event
                                      beam-event tuplet-span-event
                                      dynamic-event slur-event)
   \cueDuring "scoreAOboe" #UP { R2. *2 }
 =20
 <c e>4\pp\fermata r r
  \fine
}

scoreAOboe =3D \relative c'' {
  \global
  \compressEmptyMeasures

 r8 \p e \( fis d e fis
 b4 g d ~
 d4 e g, \) \break
=20
 b2\( c!4=20
 e,4. g8 e4 \) |
=20
 b'4.\< \( d8 \noBeam d c \!
 e,4 b'4. e,8=20
 e4 \) r r |
=20
 R2. *6
=20
=20
=20
<<\new Voice =3D "premi=C3=A8re"
  \relative {\voiceOne   r4 r r8 ^"1." \stemDown g''=20
 g2^\markup {\bold {au Mouvt}} \p  f4    \break \stemNeutral a,!4. (\stemUp c=
!8=20
 \stemNeutral a4) g'4. (f8 g c,) a4. (\stemUp c!8 \stemNeutral a4) }
 \new Voice =3D "seconde"
 \relative {\voiceTwo  s2. s    dis'4. (d!8 dis4) s2. dis4. (d!8 dis4) }>&=
gt;  |

R2. *5


r4 r r8 \pp e'8 ^\markup {\bold {Tr=C3=A8s lent}}
 (fis d e fis b4) ~b4 \fermata r r \bar".." |


} =20


scoreAright =3D \relative c'' {
 \global

=20
 R2.
  \left
  s8
  \voiceTwo a,,^( e' g c e \right
  \oneVoice g8 c) ~c2

  <d, fis b>2\arpeggio r4
  <g c e>2 \arpeggio r4
  <d fis b>2 \< \arpeggio r4 \!
  <c e>2 r4
=20
  \left
  s8
  \voiceOne d,, \> ( a' d e fis \right
   \oneVoice a8 d e fis a d ) \!

  <f! a>2 r4
  \after 64 \< \after 2. \!
  <f,\flageolet  a\flageolet  >2.=20
  <f' a>2 \> <dis,\flageolet\laissezVibrer ges\flageolet\laissezV=
ibrer>4 \!
  R2.*3 |

  <g aes c! g'>2^\markup {\bold {au Mouvt}}\arpeggio s4 =20

  R2.

  <g aes c! g'>4\arpeggio s4  s8 s8
=20
  R2.

  <bes d! a'>4\arpeggio s4  s4

  s2. R2.*2

  R2. s2. R2.
  <c\flageolet e\flageolet>2.\fermata
  \fine |
=20
}

scoreAleft =3D \relative c'' {
   \global
=20

 R2.
=20
  r8 \p a,, e' g c e \tag noQuote ~e2.^"L.V."

  r8 e,,( e'4) r
  r8 a,( e'4) r |
=20
  r8 e,( e'4) r
  r8 a,( e'4) r |
=20
  r8 d, a' d e fis\tag noQuote ~ fis2.
=20
  s2.*6
=20
  r8\p f8([ \right c' g'8] aes4)
  \left
  R2.
  r8 f,([ \right c' f8] g aes)
  \left
  R2.
  r8  g,,( d'! f! b d
  \right
  r8 <bes' d>8~ 4) r4
  \left
  R2.*2
  r8 \shiftOn a,,,( e' b' c e=20
  \right
  b'8 c^\markup {\bold {Tr=C3=A8s lent}} e b' c4)\!
  \left
  R2.*2
  \fine |
} =20

scoreAFlutePart =3D \new Staff \with {
  instrumentName =3D "2 fl=C3=BBtes"
  midiInstrument =3D "flute"
 %  shortInstrumentName =3D "2 fl"
} %\scoreAFlute=20
{ \tag conducteur \set Staff.shortInstrumentName =3D "Fl"
  \scoreAFlute
}

scoreAOboePart =3D \new Staff \with {
  instrumentName =3D "2 hautbois"
  midiInstrument =3D "oboe"
 % shortInstrumentName =3D "2 ob"
} %\scoreAOboe
{ \tag conducteur \set Staff.shortInstrumentName =3D "Ob"
  \scoreAOboe
}


scoreAHarpePart =3D \new PianoStaff \with {
    instrumentName =3D "Harpe"
  %  shortInstrumentName =3D "Harpe"
  }{\tag conducteur \set PianoStaff.shortInstrumentName =3D "Hp"
  <<
    \new Staff =3D "right" \with {
      midiInstrument =3D "orchestral harp"
    } \scoreAright
    \new Staff =3D "left" \with {
      midiInstrument =3D "orchestral harp"
    } { \clef bass \scoreAleft }
  >> }

\addQuote "scoreAright" \keepWithTag quote \scoreAright
\addQuote "scoreAleft" \keepWithTag quote \scoreAleft
\addQuote "scoreAOboe" \keepWithTag quote \scoreAOboe


\layout {
  \override Score.BarNumber.break-visibility =3D #end-of-line-invisible
  \set Score.barNumberVisibility =3D #(every-nth-bar-number-visible 5)
  \override Voice.Slur.details.edge-attraction-factor =3D 10 }

\score {
   \removeWithTag #'part \killCues \new StaffGroup
  =20
 << =20
   \new StaffGroup=20
    <<=20
    \scoreAFlutePart
    \scoreAOboePart>>
  =20
   =20
     \scoreAHarpePart >>
    =20
   \layout {
  \context {
    \Staff \RemoveEmptyStaves }
  \context {
    \Score
    \override StaffGrouper.staff-staff-spacing.padding =3D #3
  }}
  =20
 =20
  \midi {
    \tempo 4.=3D80 }=20
}

 % 2 fl=C3=BBtes
\bookpart {
 =20
  \header {subtitle =3D "2 fl=C3=BBtes"}
  \paper {
    system-separator-markup =3D ##f
    system-system-spacing.basic-distance =3D #25=20
  }
   \score {\new StaffGroup {
     \removeWithTag conducteur <<{\scoreAFlutePart} >>}
         =20
           \layout {}
           \midi {\tempo 4=3D100}}
}

% 2 haut-bois
\bookpart {
  \header {subtitle =3D "2 hautbois"}
  \paper {
  system-separator-markup =3D ##f
   system-system-spacing.basic-distance =3D #25=20
  }
   \score {\new StaffGroup {
     \removeWithTag conducteur <<{\scoreAOboePart} >>}
           \layout {}
           \midi {\tempo 4=3D100}}
}

% Harpe
\bookpart {
  \header {subtitle =3D "Harpe"}
  \paper {
    system-separator-markup =3D ##f
   system-system-spacing.basic-distance =3D #25=20
  }
   \score {\new StaffGroup {
     \removeWithTag conducteur <<{\scoreAHarpePart} >>}
           \layout {}
           \midi {\tempo 4=3D100}}
}

Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_664e548669f0e_2a136574643dc-- From MAILER-DAEMON Wed May 22 20:57:44 2024 Return-Path: Date: Wed, 22 May 2024 20:57:44 +0000 From: Christophe via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_664e5c47e90b6_2a1365746976b"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30218 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_664e5c47e90b6_2a1365746976b Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Existe-t-il un moyen d'utiliser en citation deux voix qui se trouvent sur la = m=C3=AAme port=C3=A9e ou =C3=A0 d=C3=A9faut une seule des deux voix ? ``` <<\new Voice =3D "premi=C3=A8re" \relative {\voiceOne r4 r r8 ^"1." \stemDown g''=20 g2^\markup {\bold {au Mouvt}} \p f4 \break \stemNeutral a,!4. (\stemUp c= !8=20 \stemNeutral a4) g'4. (f8 g c,) a4. (\stemUp c!8 \stemNeutral a4) } \new Voice =3D "seconde" \relative {\voiceTwo s2. s dis'4. (d!8 dis4) s2. dis4. (d!8 dis4) }>>=20 ``` Il s'agit de la musique pour 2 hautbois. Comment l'utiliser en citation ? Je ne trouve rien =C3=A0 ce sujet dans la documentation. Merci beaucoup pour vos conseils. Christophe --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/26). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_664e5c47e90b6_2a1365746976b Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Christophe Christophe
Mai 22=

Existe-t-il un moyen d'utiliser en citation deux voix qui se trouvent = sur la m=C3=AAme port=C3=A9e ou =C3=A0 d=C3=A9faut une seule des deux voix ?<= /p>

<<\new Voice =3D "premi=
=C3=A8re"
  \relative {\voiceOne   r4 r r8 ^"1." \stemDown g''=20
 g2^\markup {\bold {au Mouvt}} \p  f4    \break \stemNeutral a,!4. (\stemUp c=
!8=20
 \stemNeutral a4) g'4. (f8 g c,) a4. (\stemUp c!8 \stemNeutral a4) }
 \new Voice =3D "seconde"
 \relative {\voiceTwo  s2. s    dis'4. (d!8 dis4) s2. dis4. (d!8 dis4) }>&=
gt;=20

Il s'agit de la musique pour 2 hautbois= . Comment l'utiliser en citation ?
Je ne trouve rien =C3=A0 ce sujet dans la documentation.
Merci beaucoup pour vos conseils.
Christophe


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_664e5c47e90b6_2a1365746976b-- From MAILER-DAEMON Wed May 22 21:03:32 2024 Return-Path: Date: Wed, 22 May 2024 21:03:32 +0000 From: Jean Abou Samra via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_664e5da498a6e_2a136574752a9"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30219 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_664e5da498a6e_2a136574752a9 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Ah, je vois. Remplacez le `)` sur lequel est l'erreur par `\tag noQuote )`. D= ans la citation de ce passage qui est =C3=A0 l'int=C3=A9rieur de la partie de= fl=C3=BBte, la musique est d=C3=A9coup=C3=A9e de sorte que le d=C3=A9but de = la liaison ne tombe pas dans ce morceau, mais la fin, si, d'o=C3=B9 le `)` qu= i ne trouve pas de `(` avec qui s'apparier. --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/27). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_664e5da498a6e_2a136574752a9 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Jean Abou Samra jeanas
Mai 22=

Ah, je vois. Remplacez le ) sur lequel est l'erreur par \tag noQuote ). Dans la citation de ce passage qui est =C3=A0 l'int=C3=A9rieur de la pa= rtie de fl=C3=BBte, la musique est d=C3=A9coup=C3=A9e de sorte que le d=C3=A9= but de la liaison ne tombe pas dans ce morceau, mais la fin, si, d'o=C3=B9 le= ) qui ne trouve pas de ( avec qui s'apparier.


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_664e5da498a6e_2a136574752a9-- From MAILER-DAEMON Wed May 22 21:10:22 2024 Return-Path: Date: Wed, 22 May 2024 21:10:22 +0000 From: Christophe via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_664e5f3e6ec3a_2a134e6880677"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30220 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_664e5f3e6ec3a_2a134e6880677 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Merci Jean, c'=C3=A9tait bien =C3=A7a. Reste la question de la citation des deux voix ou l'extraction d'une des deux= voix. Merci pour votre partage. --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/28). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_664e5f3e6ec3a_2a134e6880677 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Christophe Christophe
Mai 22=

Merci Jean, c'=C3=A9tait bien =C3=A7a.

Reste la question de la citation des de= ux voix ou l'extraction d'une des deux voix.
Merci pour votre partage.


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_664e5f3e6ec3a_2a134e6880677-- From MAILER-DAEMON Wed May 22 21:20:00 2024 Return-Path: Date: Wed, 22 May 2024 21:20:00 +0000 From: Jean Abou Samra via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_664e6180413c5_2a1353408611f"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30221 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_664e6180413c5_2a1353408611f Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Moui, c'est mentionn=C3=A9 comme probl=C3=A8me connu dans la documentation : = =C2=AB Seul le contenu de la premi=C3=A8re `Voice` rencontr=C3=A9e dans la pa= rtie marqu=C3=A9e d=E2=80=99une commande `\addQuote` pourra =C3=AAtre retenu.= Par voie de cons=C3=A9quence, `musique` ne saurait comprendre de `\new` ou u= ne instance `\context Voice` qui la ferait passer =C3=A0 une autre voix. =C2= =BB (https://lilypond.org/doc/v2.24/Documentation/notation/writing-parts.fr.h= tml#quoting-other-voices) Par contre, vous pouvez changer votre ``` << \new Voice =3D "premi=C3=A8re" ... \new Voice =3D "deuxi=C3=A8me" ... >> ``` en ``` << { ... } \new Voice =3D "deuxi=C3=A8me" ... >> \oneVoice ``` pour que le contenu du premier `...` ne soit pas dans une nouvelle voix mais = dans la continuation de celle qui existait d=C3=A9j=C3=A0. Dans ce cas, le `\= quoteDuring` citera cette voix-l=C3=A0 (mais pas l'autre). --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/29). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_664e6180413c5_2a1353408611f Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Jean Abou Samra jeanas
Mai 22=

Moui, c'est mentionn=C3=A9 comme probl=C3=A8me connu dans la documenta= tion : =C2=AB Seul le contenu de la premi=C3=A8re Voice rencontr=C3=A9e dans= la partie marqu=C3=A9e d=E2=80=99une commande \addQuote pourra =C3=AAtre re= tenu. Par voie de cons=C3=A9quence, musique ne saurait comprendre de \new o= u une instance \context Voice qui la ferait passer =C3=A0 une autre voix. = =C2=BB (https://lilypond.org/doc/v2.24/Documentation/n= otation/writing-parts.fr.html#quoting-other-voices)

Par contre, vous pouvez changer votre

<<
  \new Voice =3D "premi=C3=A8re" ...
  \new Voice =3D "deuxi=C3=A8me" ...
>>

en

<<
  { ... }
  \new Voice =3D "deuxi=C3=A8me" ...
>>
\oneVoice

pour que le contenu du premier ... ne = soit pas dans une nouvelle voix mais dans la continuation de celle qui exista= it d=C3=A9j=C3=A0. Dans ce cas, le \quoteDuring citera cette voix-l=C3=A0 (m= ais pas l'autre).


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_664e6180413c5_2a1353408611f-- From MAILER-DAEMON Wed May 22 21:33:50 2024 Return-Path: Date: Wed, 22 May 2024 21:33:50 +0000 From: Christophe via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_664e64be358e2_2a134e6891579"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30222 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_664e64be358e2_2a134e6891579 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Merci Jean, je vais essayer =C3=A7a. Ou peut-=C3=AAtre l'=C3=A9crire d'une au= tre mani=C3=A8re car dans cet exemple les deux voix sont homorythmiques. Derni=C3=A8re grande question (j'esp=C3=A8re) : la partition comporte une par= tie de percussion qui ne joue vraiment pas beaucoup. Ecrite sur une seule lig= ne rythmique. Je souhaite citer deux mesures de violon avant son entr=C3=A9e. Evidemment n'appara=C3=AEt que le rythme du violon. Y-a-t-il un moyen d'incru= ster ces deux mesures avec hauteurs en port=C3=A9e =C3=A0 5 lignes dans la li= gne unique de percussion ? Merci pour votre accompagnement. Christophe --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/30). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_664e64be358e2_2a134e6891579 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Christophe Christophe
Mai 22=

Merci Jean, je vais essayer =C3=A7a. Ou peut-=C3=AAtre l'=C3=A9crire d= 'une autre mani=C3=A8re car dans cet exemple les deux voix sont homorythmique= s.

Derni=C3=A8re grande question (j'esp=C3= =A8re) : la partition comporte une partie de percussion qui ne joue vraiment = pas beaucoup. Ecrite sur une seule ligne rythmique.
Je souhaite citer deux mesures de violon avant son entr=C3=A9e.
Evidemment n'appara=C3=AEt que le rythme du violon. Y-a-t-il un moyen d'incru= ster ces deux mesures avec hauteurs en port=C3=A9e =C3=A0 5 lignes dans la li= gne unique de percussion ?

Merci pour votre accompagnement.
Christophe


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_664e64be358e2_2a134e6891579-- From MAILER-DAEMON Thu May 23 10:28:00 2024 Return-Path: Date: Thu, 23 May 2024 10:28:00 +0000 From: Jean Abou Samra via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_664f1a309699e_2a134e68970e8"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30223 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_664f1a309699e_2a134e68970e8 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 On peut faire ce genre de choses : ``` \version "2.24.2" violon =3D \relative c' { c d e f g a b c c d e f g a b c } percu =3D { \new Staff { \quoteDuring "violon" s1*2 \stopStaff } \new RhythmicStaff \with { \remove Time_signature_engraver } { 4 8 8 8 8 4 4 8 8 8 8 4 } } \addQuote "violon" \violon << \new Staff \violon \new OneStaff \percu >> ``` --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/31). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_664f1a309699e_2a134e68970e8 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Jean Abou Samra jeanas
Mai 23=

On peut faire ce genre de choses :

\version "2.24.2"

violon =3D
\relative c' {
  c d e f g a b c
  c d e f g a b c
}


percu =3D
{
  \new Staff {
    \quoteDuring "violon" s1*2
    \stopStaff
  }
  \new RhythmicStaff \with { \remove Time_signature_engraver } {
    4 8 8 8 8 4
    4 8 8 8 8 4
  }
}


\addQuote "violon" \violon

<<
  \new Staff \violon
  \new OneStaff \percu
>>

Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_664f1a309699e_2a134e68970e8-- From MAILER-DAEMON Thu May 23 20:34:50 2024 Return-Path: Date: Thu, 23 May 2024 20:34:50 +0000 From: Christophe via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_664fa86a3ad3c_2a1367cc1025da"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30224 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_664fa86a3ad3c_2a1367cc1025da Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonsoir, Avec cette syntaxe : ``` scoreATriangle =3D \relative c'{ \global \compressEmptyMeasures R2. *8 \new Staff { \tag part { <>^\markup { \tiny "violon I" } } \set Score.quotedCueEventTypes =3D #'(note-event rest-event tie-event beam-event tuplet-span-event dynamic-event slur-event) \quoteDuring "scoreAViolinI" {s2.} =20 } ``` Je suis arriv=C3=A9 =C3=A0 =C3=A7a : ![Selection_009|690x179](upload://ccFdHgMQ5g46IHvQ2nfaDQgAWgE.jpeg) Qu'en pensez-vous ? Je n'arrive pas =C3=A0 placer un silence r2. sur la ligne de percu au-dessus = de la citation. Merci beaucoup pour votre accompagnement, sans vous je n'y arriverais pas. Merci. Christophe --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/32). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_664fa86a3ad3c_2a1367cc1025da Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Christophe Christophe
Mai 23=

Bonsoir,
Avec cette syntaxe :

scoreATriangle =3D \relative c=
'{
  \global
   \compressEmptyMeasures

  R2. *8
  \new Staff {
     \tag part { <>^\markup { \tiny "violon I" } }
    \set Score.quotedCueEventTypes =3D #'(note-event rest-event tie-event
                                      beam-event tuplet-span-event
                                      dynamic-event slur-event)
   \quoteDuring "scoreAViolinI" {s2.}
   =20
  }

Je suis arriv=C3=A9 =C3=A0 =C3=A7a :
3D"Selection_009"
Qu'en pensez-vous ?
Je n'arrive pas =C3=A0 placer un silence r2. sur la ligne de percu au-dessus = de la citation.
Merci beaucoup pour votre accompagnement, sans vous je n'y arriverais pas.
Merci.
Christophe


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_664fa86a3ad3c_2a1367cc1025da-- From MAILER-DAEMON Thu May 23 20:43:41 2024 Return-Path: Date: Thu, 23 May 2024 20:43:41 +0000 From: Christophe via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_664faa7d5eebf_2a1367cc1079af"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30225 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_664faa7d5eebf_2a1367cc1079af Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Par contre, l=C3=A0 c'est tr=C3=A8s hasardeux. J'utilise une autre voix instr= umentale comme citation. Je n'arrive pas =C3=A0 diff=C3=A9rencier les deux vo= ix de hautbois comme indiqu=C3=A9 par Jean, ni avec celle d'une autre =C3=A9criture des deux voix. Beaucoup d'e= rreurs de liaisons et de probl=C3=A8mes de polyphonie mal =C3=A9crite. (r=C3= =A9f=C3=A9rences de la doc : 4.2.2). --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/33). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_664faa7d5eebf_2a1367cc1079af Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Christophe Christophe
Mai 23=

Par contre, l=C3=A0 c'est tr=C3=A8s hasardeux. J'utilise une autre voi= x instrumentale comme citation. Je n'arrive pas =C3=A0 diff=C3=A9rencier les = deux voix de hautbois comme indiqu=C3=A9
par Jean, ni avec celle d'une autre =C3=A9criture des deux voix. Beaucoup d'e= rreurs de liaisons et de probl=C3=A8mes de polyphonie mal =C3=A9crite. (r=C3= =A9f=C3=A9rences de la doc : 4.2.2).


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_664faa7d5eebf_2a1367cc1079af-- From MAILER-DAEMON Fri May 24 07:00:15 2024 Return-Path: Date: Fri, 24 May 2024 07:00:15 +0000 From: xavier via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_66503aff853c1_2a1365741133b3"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30226 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_66503aff853c1_2a1365741133b3 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour, Difficile de r=C3=A9pondre si vous ne fournissez pas un code complet montrant= le probl=C3=A8me. Vous utilisez bien le contexte `OneStaff` comme dans le code de Jean ? ``` \new OneStaff \scoreATriangle ``` Il faut peut-=C3=AAtre ajouter un `\startStaff` au d=C3=A9but de votre `\new = Staff`. Cordialement, Xavier --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/34). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_66503aff853c1_2a1365741133b3 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
xavier xavier
Mai 24=

Bonjour,

Difficile de r=C3=A9pondre si vous ne f= ournissez pas un code complet montrant le probl=C3=A8me.
Vous utilisez bien le contexte OneStaff comme dans le code de Jean ?

\new OneStaff \scoreATriangle

Il faut peut-=C3=AAtre ajouter un \startStaff= au d=C3=A9but de votre \new Staff.

Cordialement,
Xavier


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_66503aff853c1_2a1365741133b3-- From MAILER-DAEMON Fri May 24 08:20:10 2024 Return-Path: Date: Fri, 24 May 2024 08:20:09 +0000 From: xavier via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_66504db9ca057_2a134e6811870"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30227 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_66504db9ca057_2a134e6811870 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Pareil, pas d'exemple minimal de code *compilable* montrant le probl=C3=A8me. D'un autre c=C3=B4t=C3=A9 comme conseil g=C3=A9n=C3=A9ral si ce que vous voul= ez concernant les citations devient trop complexe, on peut =C3=A9crire les ci= tations =C3=A0 la main comme dans l'exemle ci-dessous (une version modifi=C3= =A9e de ce qu'on retrouve au d=C3=A9but de [NR 1.6.3](https://lilypond.org/do= c/v2.25/Documentation/notation/formatting-cue-notes.fr.html). ``` flute =3D \relative c'' { R1 \tag #'part << { \voiceTwo R1 \oneVoice } \new CueVoice { \voiceOne \relative c'' { d8^"hautbois" c d e fis2 } } >> \tag #'conductor R1 g2 e2 } \score { << \new Staff =3D "fluteStaff" { \removeWithTag #'conductor \keepWithTag #'part \flute } >> } ``` L'avantage est qu'on peut =C3=A9crire exactement ce qu'on veut comme on veut = pour la citation. Le d=C3=A9savantage est qu'on ne profite pas du m=C3=A9canisme de `\cueDuring= ` ou `quoteDuring` qui =C3=A9vitent de devoir r=C3=A9=C3=A9crire les notes po= ur les citations. Mais pour un utilisateur non confirm=C3=A9 de LilyPond c'est probablement plu= s simple. Cordialement, Xavier --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/35). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_66504db9ca057_2a134e6811870 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
xavier xavier
Mai 24=

Pareil, pas d'exemple minimal de code compilable montrant le = probl=C3=A8me.

D'un autre c=C3=B4t=C3=A9 comme conseil= g=C3=A9n=C3=A9ral si ce que vous voulez concernant les citations devient tro= p complexe, on peut =C3=A9crire les citations =C3=A0 la main comme dans l'exe= mle ci-dessous (une version modifi=C3=A9e de ce qu'on retrouve au d=C3=A9but = de NR 1.6.3.

flute =3D \relative c'' {
R1
\tag #'part <<
  { \voiceTwo R1 \oneVoice }
  \new CueVoice {
    \voiceOne
    \relative c'' { d8^"hautbois" c d e fis2 }
  }
>>
\tag #'conductor R1
g2 e2
}

\score {
  <<
    \new Staff =3D "fluteStaff" {
      \removeWithTag #'conductor \keepWithTag #'part \flute
    }
  >>
}

L'avantage est qu'on peut =C3=A9crire e= xactement ce qu'on veut comme on veut pour la citation.
Le d=C3=A9savantage est qu'on ne profite pas du m=C3=A9canisme de \cueDuring= ou qu= oteDuring qui =C3=A9vitent de devoir r=C3=A9=C3=A9crire les notes pour= les citations.

Mais pour un utilisateur non confirm=C3= =A9 de LilyPond c'est probablement plus simple.

Cordialement,
Xavier


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_66504db9ca057_2a134e6811870-- From MAILER-DAEMON Fri May 24 18:40:45 2024 Return-Path: Date: Fri, 24 May 2024 18:40:45 +0000 From: Christophe via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6650df2dfc73_2a135c14124165"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30228 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_6650df2dfc73_2a135c14124165 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour. Merci Xavier, la version simplifi=C3=A9e me convient. Je ne ma=C3=AEtrise pas= assez le m=C3=A9canisme de duplication, je le conc=C3=A8de ais=C3=A9ment. Je= le d=C3=A9couvre avec cette partition. Pour imprimer une citation avec port=C3=A9e (ici le violon) sur une ligne de = percussion, j'ai bricol=C3=A9, mais mal ! Je vous livre le code compilable, e= n r=C3=A9clamant votre indulgence. J'ai fait plusieurs essais infructueux ave= c les contextes donn=C3=A9s par Jean.=20 Merci pour votre aide si pr=C3=A9cieuse. Cordialement. Christophe ``` \version "2.24.1" \tagGroup #'(conducteur) \tagGroup quote,noQuote \header { title =3D "Pr=C3=A9lude" } global =3D { \numericTimeSignature \time 3/4 \tempo "Assez lent" =20 } scoreATriangle =3D \relative c'{ \global \compressEmptyMeasures R2. *8 =20 =20 \new Staff { \tag part { <>^\markup { \tiny "violon I" } } \set Score.quotedCueEventTypes =3D #'(note-event rest-event tie-event beam-event tuplet-span-event dynamic-event slur-event) \quoteDuring "scoreAViolinI" {s2.} } e2. R2. *17 | \bar".." }=20 scoreAViolinI =3D \relative c'' { \global \compressEmptyMeasures R2. r4 r r8 g \pp <>\after 32 \> \after 2 \! c2~ c8 r b2 f4 (e4. g8 e4) | b'4. \< (d8 \noBeam d c) \! e,4 ( 4. e8) e2. (a,8\tag noQuote ) d \> (e fis ~fis4) \! a'2 \pp \downbow (b4) a2 \upbow \< (f8 g) \!| a2 \> (fis4) \! e2 (cis4) e8 (fis4 g8) e4 ~ e8 ^\markup {\bold Ralenti}( dis4 d!8) cis4 | R2. *3 ^\markup {\bold {au Mouvt}} =20 \tag #'part << { \voiceTwo R2. \oneVoice } \new CueVoice { \voiceOne \relative c'' { a4.^"clarinette" (c!8 a4) } }>> % La ligne suivante rajoute une mesure ! % \tag #'conducteur R2. d,2. \< ~d=20 d2\! d4 ~ d4 \> ^\markup {\bold {Ralenti}} (c4. b8) b2. =20 r4\! r^\markup {\bold {Tr=C3=A8s lent}} c'4 \pp (b4 c8 d e4~ e4 ) \fermata r r \bar".." | } scoreATrianglePart =3D \new RhythmicStaff \with { instrumentName =3D "Triangle" midiInstrument =3D "taiko drum" % shortInstrumentName =3D "Tr" }% \scoreATriangle { \tag conducteur \set Staff.shortInstrumentName =3D "Tr" {\scoreATriangle} } scoreAViolinIPart =3D \new Staff \with { instrumentName =3D "Violon I" midiInstrument =3D "violin" % shortInstrumentName =3D "V1" }% \scoreAViolinI { \tag conducteur \set Staff.shortInstrumentName =3D "V1" \scoreAViolinI } \addQuote "scoreAViolinI" \keepWithTag quote \scoreAViolinI \score { << \scoreATrianglePart \scoreAViolinIPart >> =20 \layout { \context { \Staff \RemoveEmptyStaves } =20 \context { =20 }} =20 =20 \midi { \tempo 4.=3D80 }=20 } =20 % Triangle \bookpart { \header {subtitle =3D "Triangle"} \paper { system-separator-markup =3D ##f system-system-spacing.basic-distance =3D #25=20 } \score {\new StaffGroup { \removeWithTag conducteur <<{\scoreATrianglePart} >>} \layout {} \midi {\tempo 4=3D100}} } % Violon 1 \bookpart { \header {subtitle =3D "Violon 1"} \paper { system-separator-markup =3D ##f system-system-spacing.basic-distance =3D #25=20 } \score {\new StaffGroup { \removeWithTag conducteur <<{\scoreAViolinIPart} >>} \layout {} \midi {\tempo 4=3D100}} } =20 ``` --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/36). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6650df2dfc73_2a135c14124165 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Christophe Christophe
Mai 24=

Bonjour.
Merci Xavier, la version simplifi=C3=A9e me convient. Je ne ma=C3=AEtrise pas= assez le m=C3=A9canisme de duplication, je le conc=C3=A8de ais=C3=A9ment. Je= le d=C3=A9couvre avec cette partition.

Pour imprimer une citation avec port=C3= =A9e (ici le violon) sur une ligne de percussion, j'ai bricol=C3=A9, mais mal= ! Je vous livre le code compilable, en r=C3=A9clamant votre indulgence. J'ai= fait plusieurs essais infructueux avec les contextes donn=C3=A9s par Jean. Merci pour votre aide si pr=C3=A9cieuse.
Cordialement.
Christophe

\version "2.24.1"

\tagGroup #'(conducteur)
\tagGroup quote,noQuote

\header {
  title =3D "Pr=C3=A9lude"
}
global =3D {
  \numericTimeSignature
  \time 3/4
  \tempo "Assez lent" =20
}
scoreATriangle =3D \relative c'{
  \global
   \compressEmptyMeasures

  R2. *8
 =20
 =20
  \new Staff {
     \tag part { <>^\markup { \tiny "violon I" } }
    \set Score.quotedCueEventTypes =3D #'(note-event rest-event tie-event
                                      beam-event tuplet-span-event
                                      dynamic-event slur-event)
   \quoteDuring "scoreAViolinI" {s2.} }

  e2.
  R2. *17 | \bar".."
}=20

scoreAViolinI =3D \relative c'' {
  \global
   \compressEmptyMeasures
R2.
r4 r r8 g \pp
<>\after 32 \> \after 2 \! c2~  c8 r

b2 f4
(e4. g8 e4) |

b'4. \< (d8 \noBeam d c) \!
e,4 ( <g b>4. e8)
e2.
(a,8\tag noQuote ) d \> (e fis ~fis4) \!
a'2 \pp \downbow (b4)
a2 \upbow \< (f8 g) \!|

a2 \> (fis4) \!
e2  (cis4)
e8 (fis4 g8) e4 ~
e8 ^\markup {\bold Ralenti}( dis4 d!8) cis4  |

R2. *3 ^\markup {\bold {au Mouvt}}
 =20
  \tag #'part <<
  { \voiceTwo R2. \oneVoice }
  \new CueVoice {
    \voiceOne
    \relative c'' { a4.^"clarinette"  (c!8 a4) }
  }>>

% La ligne suivante rajoute une mesure !
% \tag #'conducteur R2.

d,2. \< ~d=20
d2\!  d4 ~
d4 \> ^\markup {\bold {Ralenti}} (c4. b8)
b2. =20

r4\! r^\markup {\bold {Tr=C3=A8s lent}} c'4 \pp
(b4 c8 d e4~
e4 ) \fermata r r \bar".." |
}

scoreATrianglePart =3D \new RhythmicStaff \with {
  instrumentName =3D "Triangle"
  midiInstrument =3D "taiko drum"
 % shortInstrumentName =3D "Tr"
}% \scoreATriangle
{ \tag conducteur \set Staff.shortInstrumentName =3D "Tr"
 {\scoreATriangle}
}

scoreAViolinIPart =3D \new Staff \with {
  instrumentName =3D "Violon I"
  midiInstrument =3D "violin"
 % shortInstrumentName =3D "V1"
}% \scoreAViolinI
{ \tag conducteur \set Staff.shortInstrumentName =3D "V1"
 \scoreAViolinI
}

\addQuote "scoreAViolinI" \keepWithTag quote \scoreAViolinI

\score {
 << \scoreATrianglePart
   \scoreAViolinIPart >>
=20
  \layout {
  \context {
    \Staff \RemoveEmptyStaves }
 =20
  \context {
  =20
  }}
  =20
 =20
  \midi {
    \tempo 4.=3D80 }=20
}
  =20
   % Triangle
\bookpart {
  \header {subtitle =3D "Triangle"}
  \paper {
    system-separator-markup =3D ##f
   system-system-spacing.basic-distance =3D #25=20
  }
   \score {\new StaffGroup {
     \removeWithTag conducteur <<{\scoreATrianglePart} >>}
           \layout {}
           \midi {\tempo 4=3D100}}
}

% Violon 1
\bookpart {
  \header {subtitle =3D "Violon 1"}
  \paper {
    system-separator-markup =3D ##f
   system-system-spacing.basic-distance =3D #25=20
  }
   \score {\new StaffGroup {
     \removeWithTag conducteur <<{\scoreAViolinIPart} >>}
           \layout {}
           \midi {\tempo 4=3D100}}
}
  =20

Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6650df2dfc73_2a135c14124165-- From MAILER-DAEMON Mon May 27 14:31:21 2024 Return-Path: Date: Mon, 27 May 2024 14:31:21 +0000 From: Christophe via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Effacer_les_citations_du?= =?UTF-8?Q?_conducteur?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_665499397e47d_2a1367cc1295e7"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30229 X-Discourse-Topic-Id: 5698 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/effacer-les-citations-du-conducteur/5698 ----==_mimepart_665499397e47d_2a1367cc1295e7 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour, J'ai r=C3=A9solu le probl=C3=A8me de la citation pour la partie de percussion= en l'=C3=A9crivant sur une port=C3=A9e normale plut=C3=B4t que sur une seule= ligne RhythmicStaff. Merci pour votre aide, votre p=C3=A9dagogie et votre patience. Cordialement. Christophe --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/effacer-les-citations-du-conducteur/5698/37). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_665499397e47d_2a1367cc1295e7 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Christophe Christophe
Mai 27=

Bonjour,
J'ai r=C3=A9solu le probl=C3=A8me de la citation pour la partie de percussion= en l'=C3=A9crivant sur une port=C3=A9e normale plut=C3=B4t que sur une seule= ligne RhythmicStaff.

Merci pour votre aide, votre p=C3=A9dag= ogie et votre patience.
Cordialement.
Christophe


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_665499397e47d_2a1367cc1295e7-- From MAILER-DAEMON Wed May 29 08:21:08 2024 Return-Path: Date: Wed, 29 May 2024 08:21:08 +0000 From: francisco uberto via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_OSC_-_received_and_send?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6656e5743a320_2a135c14134870"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30230 X-Discourse-Topic-Id: 5709 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/osc-received-and-send/5709 ----==_mimepart_6656e5743a320_2a135c14134870 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour,=20 Sera-t-il possible d'imaginer une communication entre supercollider et lilypo= nd en utilisant le protocol osc ?=20 comment s'y faire ?=20 toute aide sera immens=C3=A9ment appreci=C3=A9e =F0=9F=8E=89 --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/osc-received-and-send/5709/1). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6656e5743a320_2a135c14134870 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
francisco uberto fufufu
Mai 29=

Bonjour,
Sera-t-il possible d'imaginer une communication entre supercollider et lilypo= nd en utilisant le protocol osc ?
comment s'y faire ?
toute aide sera immens=C3=A9ment appreci=C3=A9e 3D":tada=


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6656e5743a320_2a135c14134870-- From MAILER-DAEMON Wed May 29 14:05:30 2024 Return-Path: Date: Wed, 29 May 2024 14:05:30 +0000 From: Mathieu Demange via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_Multi-feathered_beams=3F?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_6657362a97f82_2a13657414036"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30231 X-Discourse-Topic-Id: 5710 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/multi-feathered-beams/5710 ----==_mimepart_6657362a97f82_2a13657414036 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Bonjour =C3=A0 tous, Avec mes coll=C3=A8gues, nous souhaiterions graver une pi=C3=A8ce de Vojtech = Saudek avec LilyPond, mais l'=C3=A9criture comporte certains "challenges" qu'= il nous faudrait vaincre avant de nous lancer dans la gravure de l'int=C3=A9g= ralit=C3=A9 de la pi=C3=A8ce. Un exemple avec ce "multi-feathered beam", qui comporte plus de deux accelara= ndi/ritardandi: ![image|690x149](upload://wjADv1g0N53A0RwDfIh9SUTWk93.jpeg) J'ai trouv=C3=A9 cette piste sur la liste internationale: https://lists.gnu.o= rg/archive/html/lilypond-user/2012-03/msg00321.html Mais cela ne permet au maximum qu'un seul pivot. Un grand merci par avance pour vos suggestions. Cordialement, Mathieu --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/multi-feathered-beams/5710/1). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_6657362a97f82_2a13657414036 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
Mathieu Demange sigmate
Mai 29=

Bonjour =C3=A0 tous,

Avec mes coll=C3=A8gues, nous souhaiter= ions graver une pi=C3=A8ce de Vojtech Saudek avec LilyPond, mais l'=C3=A9crit= ure comporte certains "challenges" qu'il nous faudrait vaincre avant de nous = lancer dans la gravure de l'int=C3=A9gralit=C3=A9 de la pi=C3=A8ce.

Un exemple avec ce "multi-feathered bea= m", qui comporte plus de deux accelarandi/ritardandi:

J'ai trouv=C3=A9 cette piste sur la lis= te internationale: https://lists.gnu.org/archive/h= tml/lilypond-user/2012-03/msg00321.html

Mais cela ne permet au maximum qu'un se= ul pivot.

Un grand merci par avance pour vos sugg= estions.

Cordialement,

Mathieu


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_6657362a97f82_2a13657414036-- From MAILER-DAEMON Thu May 30 10:37:39 2024 Return-Path: Date: Thu, 30 May 2024 10:37:39 +0000 From: yannics via LilyPond To: mbox-archiver@notifications.lilypond.community Message-ID: In-Reply-To: References: Subject: =?UTF-8?Q?[LilyPond]_[G=C3=A9n=C3=A9ral]_OSC_-_receive_and_send?= Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_665856f2e3328_2a134e681461c3"; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Discourse-Post-Id: 30233 X-Discourse-Topic-Id: 5709 X-Discourse-Category: =?UTF-8?Q?G=C3=A9n=C3=A9ral?= X-Auto-Response-Suppress: All Auto-Submitted: auto-generated Precedence: list List-ID: =?UTF-8?Q?LilyPond_|_G=C3=A9n=C3=A9ral?= =?UTF-8?Q?_?= List-Archive: https://lilypond.community/t/osc-receive-and-send/5709 ----==_mimepart_665856f2e3328_2a134e681461c3 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Lilypond n'est pas fait pour =C3=A7a, bien qu'il y ait eu quelques tentatives= avec par exemple l'extension SuperCollider appel=C3=A9 [LilyCollider](https:= //github.com/smoge/LilyCollider), mais tr=C3=A8s exp=C3=A9rimental et qui ne = fait que g=C3=A9n=C3=A9rer des partitions (pas de OSC =C3=A0 ma connaissance). Cependant, il existe une alternative plut=C3=B4t satisfaisante pour g=C3=A9n= =C3=A9rer des partitions via le protocole OSC avec l'application [INScore](ht= tps://inscore.grame.fr/) d=C3=A9velopp=C3=A9e par le [grame](https://www.gram= e.fr/). --- Pour poster dans ce sujet, visitez la [page du sujet](https://lilypond.commun= ity/t/osc-receive-and-send/5709/2). Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 [user-fr@lilypond.commu= nity](mailto:user-fr@lilypond.community) ou visitez la [page d'accueil de lil= ypond.community](https://lilypond.community). ----==_mimepart_665856f2e3328_2a134e681461c3 Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 =20 =20 =20 =20
yannics
Mai 30=

Lilypond n'est pas fait pour =C3=A7a, bien qu'il y ait eu quelques ten= tatives avec par exemple l'extension SuperCollider appel=C3=A9 LilyCollider, ma= is tr=C3=A8s exp=C3=A9rimental et qui ne fait que g=C3=A9n=C3=A9rer des parti= tions (pas de OSC =C3=A0 ma connaissance).
Cependant, il existe une alternative plut=C3=B4t satisfaisante pour g=C3=A9n= =C3=A9rer des partitions via le protocole OSC avec l'application INScore d=C3=A9velopp=C3= =A9e par le grame.=


Pour poster dans ce sujet, visitez la page du sujet.

Pour cr=C3=A9er un nouveau sujet, =C3=A9crivez =C3=A0 user-fr@lilypond.communit= y ou visitez la page d'accueil de lilypond.community.

                                                           
=20 =20 =20 ----==_mimepart_665856f2e3328_2a134e681461c3--