]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/fr/user/input.itely
Merge branch 'master' into dev/texi2html
[lilypond.git] / Documentation / fr / user / input.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: d9b4bfc69674eb4ed7b8c6eaa0b646f00eae6c8d
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.51"
11
12 @c Translators: Jean-Charles Malahieude
13
14 @node Input syntax
15 @chapter Input syntax
16
17 UNTRANSLATED NODE: IGNORE ME
18
19 @menu 
20 * Input files::
21 * Common syntax issues TODO name?::
22 * Other stuffs TODO move?::
23 @end menu 
24 @node Input files
25 @section Input files
26
27 UNTRANSLATED NODE: IGNORE ME
28
29 @menu 
30 * File structure::
31 * A single music expression::
32 * Multiple scores in a book::
33 * Extracting fragments of notation::
34 * Including LilyPond files::
35 * Text encoding::
36 * Different editions from one source::
37 @end menu 
38 @node File structure
39 @subsection File structure
40
41 UNTRANSLATED NODE: IGNORE ME
42
43 @node A single music expression
44 @subsection A single music expression
45
46 UNTRANSLATED NODE: IGNORE ME
47
48 @node Multiple scores in a book
49 @subsection Multiple scores in a book
50
51 UNTRANSLATED NODE: IGNORE ME
52
53 @node Extracting fragments of notation
54 @subsection Extracting fragments of notation
55
56 UNTRANSLATED NODE: IGNORE ME
57
58 @node Including LilyPond files
59 @subsection Including LilyPond files
60
61 UNTRANSLATED NODE: IGNORE ME
62
63 @node Text encoding
64 @subsection Text encoding
65
66 UNTRANSLATED NODE: IGNORE ME
67
68 @node Different editions from one source
69 @subsection Different editions from one source
70
71 @funindex \tag
72 @cindex tag
73
74 La commande @code{\tag} affecte un nom à des expressions musicales.
75 Les expressions ainsi balisées pourront être filtrées par la suite.
76 Ce mécanisme permet d'obtenir différentes versions à partir d'une même
77 source musicale. 
78
79 Dans l'exemple qui suit, nous obtenons deux versions du même extrait,
80 l'une pour le conducteur, l'autre pour l'instrumentiste, et qui
81 comportera les ornements. 
82
83 @example
84 c1
85 <<
86   \tag #'partie <<
87     R1 \\
88     @{
89       \set fontSize = #-1
90       c4_"cue" f2 g4 @}
91   >>
92   \tag #'conducteur R1
93 >>
94 c1
95 @end example
96
97 Ce principe peut s'appliquer aux articulations, textes, etc.  Il
98 suffit de positionner 
99 @example
100 -\tag #@var{votre-balise}
101 @end example
102 avant l'articulation, comme ici :
103 @example
104 c1-\tag #'part ^4
105 @end example
106
107 Ceci définira une note avec une indication de doigté conditionnelle.
108
109 @cindex keepWithTag
110 @cindex removeWithTag
111 C'est grâce aux commandes @code{\keepWithTag} et @code{\removeWithTag}
112 que vous filtrerez les expressions balisées.  Par exemple :
113 @example
114 <<
115   @var{de la musique}
116   \keepWithTag #'score @var{de la musique}
117   \keepWithTag #'part @var{de la musique}
118 >>
119 @end example
120 donnerait :
121
122 @lilypondfile[ragged-right,quote]{tag-filter.ly}
123
124 Les arguments de la commande @code{\tag} doivent être un symbole (tel
125 que @code{#'score} ou @code{#'part}), suivi d'une expression musicale.
126 Vous pouvez utiliser de multiples balises dans un morceau en
127 saisissant plusieurs @code{\tag}.
128
129 @example
130   \tag #'original-part \tag #'transposed-part @dots{}
131 @end example
132
133 @ignore
134 FIXME
135 @seealso
136
137 Exemples : @lsr{parts,tag@/-filter@/.ly}
138 @end ignore
139
140 @knownissues
141
142 Lorsqu'elles comportent des silences, ceux-ci ne seront pas fusionnés
143 si vous imprimez une partition avec les deux sections balisées.
144
145
146 @node Common syntax issues TODO name?
147 @section Common syntax issues TODO name?
148
149 UNTRANSLATED NODE: IGNORE ME
150
151 @menu 
152 * Controlling direction::
153 * Distances and measurements MAYBE MOVE::
154 @end menu
155
156 @node Controlling direction
157 @subsection Controlling direction
158
159 UNTRANSLATED NODE: IGNORE ME
160
161 @node Distances and measurements MAYBE MOVE
162 @subsection Distances and measurements MAYBE MOVE
163
164 UNTRANSLATED NODE: IGNORE ME
165
166 @node Other stuffs TODO move?
167 @section Other stuffs TODO move?
168
169 UNTRANSLATED NODE: IGNORE ME
170
171 @menu 
172 * Displaying LilyPond notation::
173 * Skipping corrected music::
174 * context list FIXME::
175 * another thing FIXME::
176 * Input modes FIXME::
177 @end menu
178
179 @node Displaying LilyPond notation
180 @subsection Displaying LilyPond notation
181
182 UNTRANSLATED NODE: IGNORE ME
183
184 @node Skipping corrected music
185 @subsection Skipping corrected music
186
187 UNTRANSLATED NODE: IGNORE ME
188
189 @node context list FIXME
190 @subsection context list FIXME
191
192 UNTRANSLATED NODE: IGNORE ME
193
194 @node another thing FIXME
195 @subsection another thing FIXME
196
197 UNTRANSLATED NODE: IGNORE ME
198
199 @node Input modes FIXME
200 @subsection Input modes FIXME
201
202 UNTRANSLATED NODE: IGNORE ME