]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/fr/user/non-music.itely
Split WWW target in two stages WWW-1 and WWW-2
[lilypond.git] / Documentation / fr / user / non-music.itely
1 @c -*- coding: utf-8; mode: texinfo; documentlanguage: fr -*-
2 @c This file is part of lilypond.tely
3 @ignore
4     Translation of GIT committish: 3975a6210f49b40850e3f5101aad1ea4b09883f0
5
6     When revising a translation, copy the HEAD committish of the
7     version that you are working on.  See TRANSLATION for details.
8 @end ignore
9
10 @c \version "2.11.38"
11
12 @c Translators: Valentin Villenave
13 @c Translation checkers: Jean-Charles Malahieude
14
15 @node Non-musical notation
16 @chapter Non-musical notation
17
18 UNTRANSLATED NODE: IGNORE ME
19
20 @menu 
21 * Titles and headers::
22 * MIDI output::
23 * other midi::
24 @end menu
25
26 @node Titles and headers
27 @section Titles and headers
28
29 UNTRANSLATED NODE: IGNORE ME
30
31 @menu 
32 * Creating titles::
33 * Custom titles::
34 * Reference to page numbers::
35 * Table of contents::
36 @end menu
37
38 @node Creating titles
39 @subsection Creating titles
40
41 UNTRANSLATED NODE: IGNORE ME
42
43 @node Custom titles
44 @subsection Custom titles
45
46 UNTRANSLATED NODE: IGNORE ME
47
48 @node Reference to page numbers
49 @subsection Reference to page numbers
50
51 UNTRANSLATED NODE: IGNORE ME
52
53 @node Table of contents
54 @subsection Table of contents
55
56 UNTRANSLATED NODE: IGNORE ME
57
58 @node MIDI output
59 @section MIDI output
60
61 UNTRANSLATED NODE: IGNORE ME
62
63 @menu 
64 * Creating MIDI files::
65 * MIDI block::
66 * MIDI instrument names::
67 * What goes into the MIDI?  FIXME::
68 @end menu
69
70 @node Creating MIDI files
71 @subsection Creating MIDI files
72
73 UNTRANSLATED NODE: IGNORE ME
74
75 @node MIDI block
76 @subsection MIDI block
77
78 UNTRANSLATED NODE: IGNORE ME
79
80 @node MIDI instrument names
81 @subsection MIDI instrument names
82
83 UNTRANSLATED NODE: IGNORE ME
84
85 @node What goes into the MIDI?  FIXME
86 @subsection What goes into the MIDI?  FIXME
87
88 UNTRANSLATED NODE: IGNORE ME
89
90 @menu 
91 * Repeats and MIDI::
92 @end menu
93
94 @node Repeats and MIDI
95 @unnumberedsubsubsec Repeats and MIDI
96
97 @cindex reprises développées
98 @funindex \unfoldRepeats
99
100 Au prix de quelques réglages, les reprises de toutes sortes peuvent être
101 rendues dans le fichier MIDI.  Il suffit pour cela de recourir à la
102 fonction @code{\unfoldRepeats}, qui développe toutes les reprises.  En
103 d'autre termes, @code{\unfoldRepeats} transforme toutes les reprises
104 en reprises de type @code{unfold}.
105
106
107 @lilypond[quote,verbatim,fragment,line-width=8.0\cm]
108 \unfoldRepeats {
109   \repeat tremolo 8 {c'32 e' }
110   \repeat percent 2 { c''8 d'' }
111   \repeat volta 2 {c'4 d' e' f'}
112   \alternative {
113     { g' a' a' g' }
114     {f' e' d' c' }
115   }
116 }
117 \bar "|."
118 @end lilypond
119
120
121 Lorsque l'on veut utiliser @code{\unfoldRepeats} seulement pour le rendu
122 MIDI, il faut établir deux blocs @code{\score} : un pour le MIDI, avec
123 des reprises explicites, et l'autre pour la partition, avec des reprises
124 notées sous forme de barres de reprise, de trémolo ou de symboles de
125 pourcentage.  Par exemple
126
127 @example
128 \score @{
129  @var{..musique..}
130  \layout @{ ..  @}
131 @}
132 \score @{
133  \unfoldRepeats @var{..musique..}
134  \midi @{ ..  @}
135 @}
136 @end example
137
138
139 @node other midi
140 @section other midi
141
142 UNTRANSLATED NODE: IGNORE ME
143