]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/ja/notation/repeats.itely
Merge branch 'master' into lilypond/translation
[lilypond.git] / Documentation / ja / notation / repeats.itely
1 @c -*- coding: utf-8; mode: texinfo; documentlanguage: ja -*-
2 @ignore
3     Translation of GIT committish: ebe492ca408fb0d9abf80b94c56197eef8dc2f09
4
5     When revising a translation, copy the HEAD committish of the
6     version that you are working on.  For details, see the Contributors'
7     Guide, node Updating translation committishes..
8 @end ignore
9
10 @c \version "2.14.0"
11
12
13 @c Translators: Yoshiki Sawada
14 @c Translation status: post-GDP
15
16
17 @node 繰り返し
18 @section 繰り返し
19 @translationof Repeats
20
21 @lilypondfile[quote]{repeats-headword.ly}
22
23 繰り返しは音楽の主要なコンセプトであり、@c
24 繰り返しのために複数の記譜法が存在します。@c
25 LilyPond は以下の種類の繰り返しをサポートします:
26
27
28 @table @code
29 @item volta
30 繰り返される音楽は描き出されませんが、繰り返しの小節線で囲まれます。@c
31 繰り返しが楽曲の先頭にある場合、繰り返しの小節線は繰り返しの終端にのみ@c
32 譜刻されます。@c
33 繰り返し時に入れ替えて演奏される部分 (volte) は囲みの右側に譜刻されます。@c
34 これは入れ替えがある繰り返しの標準的な記譜法です。
35
36 @item unfold
37 繰り返される音楽は、@var{repeatcount} によって指定された回数だけ、@c
38 描き出されます。@c
39 これは反復の多い音楽を入力するときに有用です。
40
41 @item percent
42 これには拍の繰り返しや小節の繰り返しがあります。@c
43 スラッシュまたはパーセント記号のような外見をしています。
44
45 @item tremolo
46 これはトレモロの連桁を描くために使用されます。
47 @end table
48
49
50 @menu
51 * 長い繰り返し::
52 * 短い繰り返し::
53 @end menu
54
55 @node 長い繰り返し
56 @subsection 長い繰り返し
57 @translationof Long repeats
58
59 このセクションでは長い (通常は複数の小節) 繰り返しを入力する方法について@c
60 議論します。@c
61 繰り返しには 2 つの形式があります: 繰り返し記号によって囲まれる繰り返しと、@c
62 描き出される繰り返し -- これは反復の多い音楽を入力するために使用されます
63 -- です。@c
64 繰り返し記号を手動で制御することもできます。
65
66 @menu
67 * 通常の繰り返し::
68 * 手動の繰り返し記号::
69 * 繰り返しを描き出す::
70 @end menu
71
72 @c 未訳
73 @cindex volta
74 @cindex prima volta
75 @cindex seconda volta
76 @cindex volta, prima
77 @cindex volta, seconda
78 @cindex repeat, normal
79 @cindex normal repeat
80 @cindex repeat with alternate endings
81 @cindex alternate endings
82 @funindex \repeat
83 @funindex \alternative
84 @funindex \partial
85
86 @node 通常の繰り返し
87 @unnumberedsubsubsec 通常の繰り返し
88 @translationof Normal repeats
89
90 通常の繰り返しの構文は以下の通りです。
91
92 @example
93 \repeat volta @var{repeatcount} @var{musicexpr}
94 @end example
95
96 @noindent
97 ここで、@code{@var{musicexpr}} は音楽表記です。@c
98
99 入れ替えを持たない 1 回の繰り返しは以下のようになります:
100
101 @lilypond[verbatim,quote,relative=2]
102 \repeat volta 2 { c4 d e f }
103 c2 d
104 \repeat volta 2 { d4 e f g }
105 @end lilypond
106
107 繰り返し時に入れ替えて演奏する部分は @code{\alternative} を@c
108 用いて作り出すことができます。@c
109 入れ替えの各グループを波括弧で囲んで、このブロックの中に配置します。
110
111 @example
112 \repeat volta @var{repeatcount} @var{musicexpr}
113 \alternative @{
114   @{ @var{musicexpr} @}
115 @}
116 @end example
117
118 @noindent
119 ここで、@code{@var{musicexpr}} は音楽表記です。@c
120
121 繰り返し回数が入れ替え部分の数よりも多い場合、始めの方の繰り返しには@c
122 最初の入れ替え部分が使用されます。
123
124 繰り返しが 1 回で、入れ替えも 1 つの場合は以下のようになります:
125
126 @lilypond[verbatim,quote,relative=2]
127 \repeat volta 2 { c4 d e f | }
128 \alternative {
129   { c2 e | }
130   { f2 g | }
131 }
132 c1
133 @end lilypond
134
135 複数の入れ替え部分を 1 回ずつ演奏する繰り返しは以下のようになります:
136
137
138 @lilypond[verbatim,quote,relative=2]
139 \repeat volta 4 { c4 d e f | }
140 \alternative {
141   { c2 e | }
142   { f2 g | }
143 }
144 c1
145 @end lilypond
146
147 繰り返し部分を複数回繰り返す場合は以下のようになります:
148
149 @lilypond[verbatim,quote,relative=2]
150 \repeat volta 3 { c4 d e f | }
151 \alternative {
152   { c2 e | }
153   { f2 g | }
154   { a2 g | }
155 }
156 c1
157 @end lilypond
158
159 @warning{入れ替えが複数ある場合、入れ替えの閉じ波括弧と次の入れ替えの@c
160 開始の波括弧の間に何かを置くべきではありません。@c
161 さもないと、予期せぬ数の入れ替えが発生します。}
162
163 @warning{@code{Voice} コンテキストを明示的にインスタンス化せずに@c
164 @code{@bs{}relative} を @code{@bs{}repeat} の中に配置すると、@c
165 余計な譜が表示されます。@c
166 @rprogram{余計な譜が表示される} を参照してください。}
167
168 @cindex repeat with upbeat (上拍を持つ繰り返し)
169 @cindex upbeat in a repeat (繰り返しの中にある上拍)
170 @cindex anacrucis in a repeat (繰り返しの中にある弱拍)
171 @cindex repeat with anacrucis (弱拍を持つ繰り返し)
172 @cindex repeat with pickup (ピックアップを持つ繰り返し)
173 @cindex pickup in a repeat (繰り返しの中にあるピックアップ)
174 @funindex \partial
175
176 繰り返しが小節の途中から始まり、入れ替え部分が無い場合、@c
177 風通は繰り返しの終わりも小節の途中になります。@c
178 そのため、1 つ小節に 2 つの終わりが加えられます。@c
179 そのような場合、繰り返し記号は本来の小節線とは異なります。@c
180 繰り返し記号を譜刻する場所で @code{\partila} コマンドや小節チェックを@c
181 使わないで下さい:
182
183 @c KEEP LY
184 @lilypond[verbatim,quote,relative=1]
185 % ここで \partial を使わないで下さい
186 c4 e g  % ここで小節チェックを行わないで下さい
187 % ここで \partial を使わないで下さい
188 \repeat volta 4 {
189   e4 |
190   c2 e |
191   % ここで \partial を使わないで下さい
192   g4 g g  % ここで小節チェックを行わないで下さい
193 }
194 % ここで \partial を使わないで下さい
195 g4 |
196 a2 a |
197 g1 |
198 @end lilypond
199
200 同様に、繰り返しが楽譜の先頭の部分小節から始まり、入れ替え部分を持たない場合、@c
201 楽譜の先頭で @code{\partial} コマンドを配置する必要があることを除いて、@c
202 上の例と同じ条件が適用されます:
203
204 @c KEEP LY
205 @lilypond[verbatim,quote,relative=1]
206 \partial 4  % \partial が必要です
207 \repeat volta 4 {
208   e4 |
209   c2 e |
210   % ここで \partial を使わないで下さい
211   g4 g g  % ここで小節チェックを行わないで下さい
212 }
213 % ここで \partial を使わないで下さい
214 g4 |
215 a2 a |
216 g1 |
217 @end lilypond
218
219 完全な長さを持たない小節で始まる小節に入れ替え部分を付け加える場合、@c
220 以下の場所で @code{Timing.measureLength} コンテキスト プロパティを@c
221 手動で設定する必要があります:
222
223 @itemize
224 @item
225 @code{\alternative} ブロック内の不完全な小節の開始点。@c
226 通常、これは (たいていの場合は) 最後の入れ替え部分を除く、@c
227 各入れ替え部分の最後の小節になります。
228
229 @item
230 最初の入れ替え部分を除く、各入れ替え部分の開始点。
231 @end itemize
232
233 @lilypond[verbatim,quote,relative=1]
234 \partial 4
235 \repeat volta 2 { e4 | c2 e | }
236 \alternative {
237   {
238     f2 d |
239     \set Timing.measureLength = #(ly:make-moment 3 4)
240     g4 g g  % optional bar check is allowed here
241   }
242   {
243     \set Timing.measureLength = #(ly:make-moment 4 4)
244     a2 a |
245   }
246 }
247 g1 |
248 @end lilypond
249
250 @code{measureLength} プロパティについての説明は @ref{時間管理} にあります。
251
252 @cindex repeats, with ties (タイを持つ繰り返し)
253 @cindex alternative endings, with ties (タイを持つ繰り返しの入れ替え部分)
254 @cindex ties, in repeats (繰り返しの中にあるタイ)
255 @cindex ties, alternative endings (繰り返しの入れ替え部分でのタイ)
256 @funindex \repeatTie
257
258 繰り返しの 2 回目の部分にタイを付け加えることもできます:
259
260 @lilypond[verbatim,quote,relative=2]
261 c1
262 \repeat volta 2 { c4 d e f~ }
263 \alternative {
264   { f2 d }
265   { f2\repeatTie f, }
266 }
267 @end lilypond
268
269 @snippets
270
271 @lilypondfile[verbatim,quote,texidoc,doctitle]
272 {shortening-volta-brackets.ly}
273
274 @lilypondfile[verbatim,quote,texidoc,doctitle]
275 {adding-volta-brackets-to-additional-staves.ly}
276
277 @lilypondfile[verbatim,quote,texidoc,doctitle]
278 {setting-the-double-repeat-default-for-volte.ly}
279
280 @cindex repeats, bar numbers letters (繰り返しでの小節番号)
281 @cindex repeats, alternative bar numbers (入れ替え部分での小節番号)
282
283 @lilypondfile[verbatim,quote,texidoc,doctitle]
284 {alternative-bar-numbering.ly}
285
286 @seealso
287 音楽用語集:
288 @rglos{repeat},
289 @rglos{volta}
290
291 記譜法リファレンス:
292 @ref{小節線},
293 @ref{Modifying context plug-ins},
294 @ref{時間管理}
295
296 コード断片集:
297 @rlsr{Repeats}
298
299 内部リファレンス:
300 @rinternals{VoltaBracket},
301 @rinternals{RepeatedMusic},
302 @rinternals{VoltaRepeatedMusic},
303 @rinternals{UnfoldedRepeatedMusic}
304
305 @knownissues
306
307 @cindex repeat, ambiguous (あいまいな繰り返し)
308 @cindex nested repeat (ネストされた繰り返し)
309 @cindex repeat, nested (ネストされた繰り返し)
310 @cindex repeat timing information (繰り返しタイミング情報)
311 @cindex repeat and measure number (繰り返しと小節番号)
312 @cindex timing information and repeats (タイミング情報と繰り返し)
313 @cindex measure number and repeats (小節番号と繰り返し)
314 @cindex repeat and slur (繰り返しとスラー)
315 @cindex slur and repeat (スラーと繰り返し)
316
317 @code{\repeat} ブロックから @code{\alternative} ブロックまで続くスラーは、@c
318 最初の入れ替え部分に対してのみ機能します。@c
319 さらに、スラーは入れ替え部分の終わりから繰り返しの先頭までをカバーすることは@c
320 できません。
321
322 不完全な小節で始まる繰り返しが @code{measureLength} プロパティの変更を行う@c
323 @code{\alternative} ブロックを持つ場合、@c
324 @code{\unfoldRepeats} を使用するとおかしな場所に小節線が引かれ、@c
325 小節チェック警告が発生します。
326
327 以下のようにネストされた繰り返し
328
329 @example
330 \repeat @dots{}
331 \repeat @dots{}
332 \alternative
333 @end example
334
335 @noindent
336 はあいまいです。@c
337 なぜなら、@code{\alternative} がどちらの @code{\repeat} に属するのか@c
338 はっきりしないからです。@c
339 このあいまいさは、常に @code{\alternative} を内側の @code{\repeat} に@c
340 属させることによって解決されます。@c
341 はっきりとさせるために、そのような状況では波括弧を使用すると賢明です。
342
343
344 @node 手動の繰り返し記号
345 @unnumberedsubsubsec 手動の繰り返し記号
346 @translationof Manual repeat marks
347
348 @cindex manual repeat mark (手動の繰り返し記号)
349 @cindex repeat, manual (手動の繰り返し)
350 @cindex start repeat (繰り返しの開始)
351 @cindex repeat, start (繰り返しの開始)
352 @cindex end repeat (繰り返しの終了)
353 @cindex repeat, end (繰り返しの終了)
354 @cindex repeat number, changing (繰り返しの回数を変更する)
355 @cindex repeat volta, changing (繰り返し volta を変更する)
356 @cindex volta bracket (volta 囲み)
357 @cindex bracket, volta (volta 囲み)
358 @funindex repeatCommands
359 @funindex start-repeat
360
361 @warning{以下の手法は特殊な繰り返し構造を表示するためだけに使用され、@c
362 予期しない振る舞いをする可能性があります。@c
363 たいていのケースでは、繰り返しは標準の @code{@bs{}repeat} コマンドを用いるか、@c
364 適切な小節線を譜刻することによって作成すべきです。@c
365 更なる情報は、@ref{小節線} を参照してください。}
366
367 プロパティ @code{repeatCommands} を用いて繰り返しのレイアウトを@c
368 制御することができます。@c
369 このプロパティの値は繰り返しコマンドの Scheme リストです。
370
371 @table @code
372 @item start-repeat
373 @code{|:} 小節線を譜刻します。
374
375 @lilypond[verbatim,quote,relative=2]
376 c1
377 \set Score.repeatCommands = #'(start-repeat)
378 d4 e f g
379 c1
380 @end lilypond
381
382 標準の譜刻習慣に従い、楽曲の先頭では繰り返し記号は譜刻されません。
383
384 @item end-repeat
385 @code{:|} 小節線を譜刻します。
386
387 @lilypond[verbatim,quote,relative=2]
388 c1
389 d4 e f g
390 \set Score.repeatCommands = #'(end-repeat)
391 c1
392 @end lilypond
393
394 @item (volta @var{number}) ... (volta #f)
395 指定された番号を持つ新しい volta を作成します。@c
396 Volta 囲みは明示的に終了させる必要があります。@c
397 さもなければ、譜刻されません。
398
399 @lilypond[verbatim,quote,relative=2]
400 f4 g a b
401 \set Score.repeatCommands = #'((volta "2"))
402 g4 a g a
403 \set Score.repeatCommands = #'((volta #f))
404 c1
405 @end lilypond
406
407 @end table
408
409 複数の繰り返しコマンドが同時に発生することもあります:
410
411 @lilypond[verbatim,quote,relative=2]
412 f4 g a b
413 \set Score.repeatCommands = #'((volta "2, 5") end-repeat)
414 g4 a g a
415 c1
416 \set Score.repeatCommands = #'((volta #f) (volta "95") end-repeat)
417 b1
418 \set Score.repeatCommands = #'((volta #f))
419 @end lilypond
420
421 @cindex volta bracket with text (テキストを持つ volta 囲み)
422 @cindex text in volta bracket (volta 囲みの中にあるテキスト)
423
424 テキストを volta 囲みに含めることができます。@c
425 テキストに使用できるのは数字やマークアップ テキストです。@c
426 @ref{Formatting text} を参照してください。@c
427 マークアップ テキストを使用するための最も簡単な方法は、最初にマークアップを@c
428 定義し、それからそのマークアップを Scheme リストに含める方法です。
429
430 @lilypond[verbatim,quote]
431 voltaAdLib = \markup { 1. 2. 3... \text \italic { ad lib. } }
432 \relative c'' {
433   c1
434   \set Score.repeatCommands = #(list(list 'volta voltaAdLib) 'start-repeat)
435   c4 b d e
436   \set Score.repeatCommands = #'((volta #f) (volta "4.") end-repeat)
437   f1
438   \set Score.repeatCommands = #'((volta #f))
439 }
440 @end lilypond
441
442
443 @snippets
444
445 @lilypondfile[verbatim,quote,texidoc,doctitle]
446 {printing-a-repeat-sign-at-the-beginning-of-a-piece.ly}
447
448
449 @seealso
450 記譜法リファレンス:
451 @ref{小節線},
452 @ref{Formatting text}
453
454 コード断片集:
455 @rlsr{Repeats}
456
457 内部リファレンス:
458 @rinternals{VoltaBracket},
459 @rinternals{RepeatedMusic},
460 @rinternals{VoltaRepeatedMusic}
461
462
463 @node 繰り返しを描き出す
464 @unnumberedsubsubsec 繰り返しを描き出す
465 @translationof Written-out repeats
466
467 @cindex written-out repeats (繰り返しを描き出す)
468 @cindex repeats, written-out (繰り返しを描き出す)
469 @cindex repeats, unfold (繰り返しを展開する)
470 @cindex repeats, alternative (繰り返しの入れ替え)
471 @cindex unfold repeat (繰り返しを展開する)
472 @cindex unfold repeat, with alternate endings (入れ替え部分のある繰り返しを展開する)
473 @cindex alternate repeats (入れ替えのある繰り返し)
474 @cindex alternate endings, repeats (繰り返しを入れ替えて終わる)
475 @funindex unfold
476
477 @code{unfold} コマンドを用いることにより、@c
478 繰り返しを単に反復する音楽を描き出すために使用することができます。@c
479 構文は以下の通りです:
480
481 @example
482 \repeat unfold @var{repeatcount} @var{musicexpr}
483 @end example
484
485 ここで、@code{@var{musicexpr}} は音楽表記であり、@code{@var{repeatcount}} は
486 @code{@var{musicexpr}} を繰り返す回数です。
487
488 @lilypond[verbatim,quote,relative=2]
489 \repeat unfold 2 { c4 d e f }
490 c1
491 @end lilypond
492
493 いくつかのケースでは、特に @code{\relative} コンテキストの中では、@c
494 @code{\repeat unfold} 関数は音楽表記を複数回記述したものと同じにはなりません。@c
495 例えば、
496
497 @example
498 \repeat unfold 2 @{ a'4 b c @}
499 @end example
500
501 これは以下と等価ではありません。
502
503 @example
504 a'4 b c | a'4 b c
505 @end example
506
507 入れ替え部分がある繰り返しを展開することもできます。@c
508
509 @lilypond[verbatim,quote,relative=2]
510 \repeat unfold 2 { c4 d e f }
511 \alternative {
512   { c2 g' }
513   { c,2 b }
514 }
515 c1
516 @end lilypond
517
518 繰り返し回数が入れ替え部分の数よりも多い場合、@c
519 最初の入れ替え部分だけが適用されます。@c
520 残りの入れ替えは無視されて譜刻されません。
521
522 @lilypond[verbatim,quote,relative=2]
523 \repeat unfold 4 { c4 d e f }
524 \alternative {
525   { c2 g' }
526   { c,2 b }
527   { e2 d }
528  }
529 c1
530 @end lilypond
531 入れ替え部分の数が繰り返し回数よりも多い場合、@c
532 最初の入れ替え部分が使用され、残りの繰り返し部分は無視され、譜刻されません。
533
534 @lilypond[verbatim,quote,relative=2]
535 \repeat unfold 2 { c4 d e f }
536 \alternative {
537   { c2 g' }
538   { c,2 b }
539   { e2 d }
540 }
541 c1
542 @end lilypond
543
544 複数の @code{unfold} 関数をネストすることも可能です。@c
545 (@code{unfold} は入れ替え部分を持っていても、持っていなくても構いません。)
546
547 @lilypond[verbatim,quote,relative=2]
548 \repeat unfold 2 {
549   \repeat unfold 2 { c4 d e f }
550   \alternative {
551     { c2 g' }
552     { c,2 b }
553   }
554 }
555 c1
556 @end lilypond
557
558 和音構造は和音の繰り返し記号 @code{q} で繰り返すことができます。@c
559 @ref{和音の繰り返し} を参照してください。
560
561 @warning{@code{Voice} コンテキストを明示的にインスタンス化せずに@c
562 @code{@bs{}relative} を @code{@bs{}repeat} の中に配置すると、@c
563 余計な譜が表示されます。@c
564 @rprogram{余計な譜が表示される} を参照してください。}
565
566
567 @seealso
568 記譜法リファレンス:
569 @ref{和音の繰り返し}
570
571 コード断片集:
572 @rlsr{Repeats}
573
574 内部リファレンス:
575 @rinternals{RepeatedMusic},
576 @rinternals{UnfoldedRepeatedMusic}
577
578
579 @node 短い繰り返し
580 @subsection 短い繰り返し
581 @translationof Short repeats
582
583 このセクションでは、短い繰り返しを入力する方法について議論します。@c
584 短い繰り返しには 2 つの形式があります:
585 単一の音符、単一の小節あるいは 2 小節の繰り返しを表す@c
586 スラッシュまたはパーセント記号と、トレモロです。
587
588 @menu
589 * パーセント繰り返し::
590 * トレモロの繰り返し::
591 @end menu
592
593 @node パーセント繰り返し
594 @unnumberedsubsubsec パーセント繰り返し
595 @translationof Percent repeats
596
597 @cindex percent repeats (パーセント繰り返し)
598 @cindex measure repeats (小節の繰り返し)
599 @cindex repeat, percent (パーセント繰り返し)
600 @cindex repeat, measure (小節の繰り返し)
601 @cindex repeat, short (短い繰り返し)
602 @funindex \repeat percent
603 @funindex percent
604
605 繰り返される短いパターンは 1 回だけ譜刻され、@c
606 繰り返しは特殊な記号で置き換えられます。
607
608 構文は以下の通りです
609
610 @example
611 \repeat percent @var{number} @var{musicexpr}
612 @end example
613
614 @noindent
615 ここで、@code{@var{musicexpr}} は音楽表記です。
616
617 1 小節よりも短いパターンはスラッシュで置き換えられます。
618
619 @lilypond[verbatim,quote,relative=2]
620 \repeat percent 4 { c128 d e f }
621 \repeat percent 4 { c64 d e f }
622 \repeat percent 5 { c32 d e f }
623 \repeat percent 4 { c16 d e f }
624 \repeat percent 4 { c8 d }
625 \repeat percent 4 { c4 }
626 \repeat percent 2 { c2 }
627 @end lilypond
628
629 1 または 2 小節のパターンはパーセントのような記号で置き換えられます。
630
631 @lilypond[verbatim,quote,relative=2]
632 \repeat percent 2 { c4 d e f }
633 \repeat percent 2 { c2 d }
634 \repeat percent 2 { c1 }
635 @end lilypond
636
637 @lilypond[verbatim,quote,relative=2]
638 \repeat percent 3 { c4 d e f | c2 g' }
639 @end lilypond
640
641 1 小節よりも短いけれども異なる演奏時間が含まれるパターンは@c
642 2 重線のパーセント記号を用います。
643
644 @lilypond[verbatim,quote,relative=2]
645 \repeat percent 4 { c8. <d f>16 }
646 \repeat percent 2 { \times 2/3 { r8 c d } e4 }
647 @end lilypond
648
649 @snippets
650
651 @lilypondfile[verbatim,quote,texidoc,doctitle]
652 {percent-repeat-counter.ly}
653
654 @lilypondfile[verbatim,quote,texidoc,doctitle]
655 {percent-repeat-count-visibility.ly}
656
657 @lilypondfile[verbatim,quote,texidoc,doctitle]
658 {isolated-percent-repeats.ly}
659
660 @seealso
661 音楽用語集:
662 @rglos{percent repeat},
663 @rglos{simile}
664
665 コード断片集:
666 @rlsr{Repeats}
667
668 内部リファレンス:
669 @rinternals{RepeatSlash},
670 @rinternals{RepeatSlashEvent},
671 @rinternals{DoubleRepeatSlash},
672 @rinternals{PercentRepeat},
673 @rinternals{PercentRepeatCounter},
674 @rinternals{PercentRepeatedMusic},
675 @rinternals{Percent_repeat_engraver},
676 @rinternals{DoublePercentEvent},
677 @rinternals{DoublePercentRepeat},
678 @rinternals{DoublePercentRepeatCounter},
679 @rinternals{Double_percent_repeat_engraver},
680 @rinternals{Slash_repeat_engraver}
681
682
683 @node トレモロの繰り返し
684 @unnumberedsubsubsec トレモロの繰り返し
685 @translationof Tremolo repeats
686
687 @cindex tremolo beams (トレモロの連桁)
688 @cindex tremolo (トレモロ)
689 @cindex repeat, tremolo (トレモロの繰り返し)
690 @funindex \repeat tremolo
691 @funindex tremolo
692
693 トレモロには 2 つの形式があります:
694 2 つの和音あるいは 2 つの音符を交互に演奏するものと、@c
695 単一の音符あるいは和音を素早く繰り返すものです。@c
696 交互に演奏するトレモロは、@c
697 音符あるいは和音の間に多重連桁を付け加えることによって示され、@c
698 一方、単一の音符を素早く繰り返すトレモロは単一の音符に@c
699 多重連桁あるいは多重スラッシュを付け加えることによって示されます。
700
701 2 つの音符の間にトレモロ記号を配置するには、トレモロ スタイルの @code{\repeat}
702 を使用します:
703
704 @lilypond[quote,verbatim,relative=2]
705 \repeat tremolo 8 { c16 d }
706 \repeat tremolo 6 { c16 d }
707 \repeat tremolo 2 { c16 d }
708 @end lilypond
709
710 @code{\repeat tremolo} の構文では、@c
711 波括弧の中にある音符の数がちょうど 2 つであること、@c
712 それに、繰り返しの回数が普通の音符あるいは付点音符として表すことができる@c
713 音価に相当することが必須です。@c
714 それゆえ、@code{\repeat tremolo 7} は有効であり、2 重付点音符を作り出します。@c
715 しかしながら、@code{\repeat tremolo 9} は無効です。
716
717 トレモロの演奏時間は、@c
718 波括弧で囲まれた音楽表記の演奏時間に繰り返し回数を掛けたものに等しいです:
719 @code{\repeat tremolo 8 @{ c16 d16 @}} は全音符のトレモロであり、@c
720 トレモロの連桁でつながれた 2 つの全音符として譜刻されます。
721
722 単一の音符上にトレモロ記号を配置する方法は 2 つあります。@c
723 @code{\repeat tremolo} 構文をここでも使用します
724 -- この場合、音符を波括弧で囲むべきではありません:
725
726 @lilypond[quote,verbatim,ragged-right]
727 \repeat tremolo 4 c'16
728 @end lilypond
729
730 @cindex tremolo marks (トレモロ記号)
731 @funindex tremoloFlags
732 @funindex :
733
734 音符の後に @code{:@var{N}} を付け加えることによって@c
735 同じ出力を得ることができます。@c
736 @code{@var{N}} は細部の演奏時間を表し、8 以上である必要があります。@c
737 @code{@var{N}} が 8 である場合、音符の符幹に 1 本の連桁が付け加えられます。@c
738 @code{@var{N}} が省略された場合、
739 最後の値 (@code{tremoloFlags} に保存されています) が使用されます:
740
741 @lilypond[quote,verbatim,relative=2]
742 c2:8 c:32
743 c: c:
744 @end lilypond
745
746 @snippets
747
748 @lilypondfile[verbatim,quote,texidoc,doctitle]
749 {cross-staff-tremolos.ly}
750
751
752 @seealso
753 コード断片集:
754 @rlsr{Repeats}
755
756 @cindex tremolo, cross-staff (譜を跨ぐトレモロ)
757 @cindex cross-staff tremolo (譜を跨ぐトレモロ)