]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/fr/user/input.itely
Merge branch 'master' of git://git.sv.gnu.org/lilypond.git into td-lily
[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.38"
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
134 @seealso
135
136 Exemples : @lsr{parts,tag@/-filter@/.ly}
137
138
139 @knownissues
140
141 Lorsqu'elles comportent des silences, ceux-ci ne seront pas fusionnés
142 si vous imprimez une partition avec les deux sections balisées.
143
144
145 @node Common syntax issues TODO name?
146 @section Common syntax issues TODO name?
147
148 UNTRANSLATED NODE: IGNORE ME
149
150 @menu 
151 * Controlling direction::
152 * Distances and measurements MAYBE MOVE::
153 @end menu
154
155 @node Controlling direction
156 @subsection Controlling direction
157
158 UNTRANSLATED NODE: IGNORE ME
159
160 @node Distances and measurements MAYBE MOVE
161 @subsection Distances and measurements MAYBE MOVE
162
163 UNTRANSLATED NODE: IGNORE ME
164
165 @node Other stuffs TODO move?
166 @section Other stuffs TODO move?
167
168 UNTRANSLATED NODE: IGNORE ME
169
170 @menu 
171 * Displaying LilyPond notation::
172 * Skipping corrected music::
173 * context list FIXME::
174 * another thing FIXME::
175 * Input modes FIXME::
176 @end menu
177
178 @node Displaying LilyPond notation
179 @subsection Displaying LilyPond notation
180
181 UNTRANSLATED NODE: IGNORE ME
182
183 @node Skipping corrected music
184 @subsection Skipping corrected music
185
186 UNTRANSLATED NODE: IGNORE ME
187
188 @node context list FIXME
189 @subsection context list FIXME
190
191 UNTRANSLATED NODE: IGNORE ME
192
193 @node another thing FIXME
194 @subsection another thing FIXME
195
196 UNTRANSLATED NODE: IGNORE ME
197
198 @node Input modes FIXME
199 @subsection Input modes FIXME
200
201 UNTRANSLATED NODE: IGNORE ME