]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/ja/notation/staff.itely
Doc-fr: fix X-Ref
[lilypond.git] / Documentation / ja / notation / staff.itely
1 @c -*- coding: utf-8; mode: texinfo; documentlanguage: ja -*-
2 @ignore
3     Translation of GIT committish: fabcd22c8f88ea9a87241597f1e48c0a9adbfc6e
4
5     When revising a translation, copy the HEAD committish of the
6     version that you are working on.  See TRANSLATION for details.
7 @end ignore
8
9 @c \version "2.17.30"
10
11
12 @c Translators: Yoshiki Sawada
13 @c Translation status: post-GDP
14
15
16 @node 譜の記譜法
17 @section 譜の記譜法
18 @translationof Staff notation
19
20 @c The line width is a bit of a hack to allow space for the
21 @c  instrument names.
22 @lilypondfile[quote,ragged-right,line-width=14.5\cm,staffsize=16]{staff-headword.ly}
23
24 このセクションでは、譜の見た目を変える方法、複数の譜を持つ楽譜を譜刻する方法、@c
25 それに、テンポ指示と演奏指示楽節の音符を譜に付け加える方法について説明します。
26
27 @menu
28 * 譜を表示する::
29 * 個々の譜を変更する::
30 * パートを記述する::
31 @end menu
32
33
34 @node 譜を表示する
35 @subsection 譜を表示する
36 @translationof Displaying staves
37
38 このセクションでは、譜を作成する方法と、@c
39 譜をグループ化する方法をいくつか説明します。
40
41 @menu
42 * 新たに譜をインスタンス化する::
43 * 譜をグループ化する::
44 * ネストされた譜グループ::
45 * Separating systems::
46 @end menu
47
48
49 @node 新たに譜をインスタンス化する
50 @unnumberedsubsubsec 新たに譜をインスタンス化する
51 @translationof Instantiating new staves
52
53 @cindex new staff (新しい譜)
54 @cindex staff initiation (譜の開始)
55 @cindex staff instantiation (譜のインスタンス化)
56 @cindex staff, new (新しい譜)
57 @cindex staff, single (単一の譜)
58 @cindex staff, drum (ドラム譜)
59 @cindex staff, percussion (打楽器譜)
60 @cindex drum staff (ドラム譜)
61 @cindex percussion staff (打楽器譜)
62 @cindex Gregorian transcription staff (グレゴリア編曲譜)
63 @cindex rhythmic staff (リズム譜)
64 @cindex tabstaff (タブ譜)
65 @cindex tablature  (タブ譜)
66
67 @funindex \drummode
68 @funindex drummode
69 @funindex DrumStaff
70 @funindex RhythmicStaff
71 @funindex TabStaff
72 @funindex MensuralStaff
73 @funindex VaticanaStaff
74 @funindex GregorianTranscriptionStaff
75
76 @notation{stave: 譜} (@notation{staff}: 譜 (表) の単称) は
77 @code{\new} コマンドや @code{\context} コマンドで作成されます。@c
78 詳細は @ref{Creating and referencing contexts} を参照してください。
79
80 基本的な譜コンテキストは @code{Staff} です:
81
82 @lilypond[verbatim,quote,relative=2]
83 \new Staff { c4 d e f }
84 @end lilypond
85
86 @code{DrumStaff} コンテキストは、一般的なドラム セットのための 5 線譜を@c
87 作成します。@c
88 各楽器は異なるシンボルで示されます。@c
89 @code{\drummode} コマンドの後に続けて、楽器をドラム モードで入力します。@c
90 各楽器は名前によって指定されます。@c
91 詳細は @ref{Percussion staves} を参照してください。
92
93 @lilypond[verbatim,quote]
94 \new DrumStaff {
95   \drummode { cymc hh ss tomh }
96 }
97 @end lilypond
98
99 @code{RhythmicStaff} は、入力のリズム価だけを表示する単線譜を作成します。@c
100 (ピッチは無視されますが) 演奏時間が保持されます。@c
101 詳細は @ref{Showing melody rhythms} を参照してください。
102
103 @lilypond[verbatim,quote,relative=2]
104 \new RhythmicStaff { c4 d e f }
105 @end lilypond
106
107 @code{TabStaff} は、標準のギター チューニングの 6 弦のタブ譜を作成します。@c
108 詳細は @ref{Default tablatures} を参照してください。
109
110 @lilypond[verbatim,quote,relative=2]
111 \new TabStaff { c4 d e f }
112 @end lilypond
113
114 古代音楽の記譜法のために 2 つの譜コンテキストが用意されています:
115 @code{MensuralStaff} と @code{VaticanaStaff} です。@c
116 これらのことは @ref{Pre-defined contexts} で説明されています。
117
118 @code{GregorianTranscriptionStaff} コンテキストは、@c
119 現代グレゴリア聖歌を記譜するための譜を作成します。@c
120 これは小節線を譜刻しません。
121
122 @lilypond[verbatim,quote,relative=2]
123 \new GregorianTranscriptionStaff { c4 d e f e d }
124 @end lilypond
125
126 新たに単一譜コンテキストを定義する場合があります。@c
127 詳細は @ref{Defining new contexts} を参照してください。
128
129 @seealso
130 音楽用語集:
131 @rglos{staff},
132 @rglos{staves}
133
134 記譜法リファレンス:
135 @ref{Creating and referencing contexts},
136 @ref{Percussion staves},
137 @ref{Showing melody rhythms},
138 @ref{Default tablatures},
139 @ref{Pre-defined contexts},
140 @ref{Staff symbol},
141 @ref{Gregorian chant contexts},
142 @ref{Mensural contexts},
143 @ref{Defining new contexts}
144
145 コード断片集:
146 @rlsr{Staff notation}
147
148 内部リファレンス:
149 @rinternals{Staff},
150 @rinternals{DrumStaff},
151 @rinternals{GregorianTranscriptionStaff},
152 @rinternals{RhythmicStaff},
153 @rinternals{TabStaff},
154 @rinternals{MensuralStaff},
155 @rinternals{VaticanaStaff},
156 @rinternals{StaffSymbol}
157
158
159 @node 譜をグループ化する
160 @unnumberedsubsubsec 譜をグループ化する
161 @translationof Grouping staves
162
163 @cindex start of system (システムの開始)
164 @cindex staff, multiple (複数の譜)
165 @cindex staves, multiple (複数の譜)
166 @cindex system start delimiters (システム開始の境界線)
167 @cindex bracket, vertical (垂直の角括弧)
168 @cindex brace, vertical (垂直の波括弧)
169 @cindex choir staff (合唱譜)
170 @cindex grand staff (グランド譜)
171 @cindex piano staff (ピアノ譜)
172 @cindex staff group (譜グループ)
173 @cindex staff, choir (合唱譜)
174 @cindex staff, piano (ピアノ譜)
175 @cindex staff, grand (グランド譜)
176 @cindex system (システム)
177
178 複数の譜からなるシステムを形成するために譜をグループ化する@c
179 さまざまなコンテキストが存在します。@c
180 グループ化を行うコンテキストはそれぞれにシステム開始境界線のスタイルと@c
181 小節線の振る舞いを設定します。
182
183 コンテキストが指定されていない場合、デフォルトのプロパティが使用されます:
184 グループは垂直の線で始まり、小節線はつながりません。
185
186 @lilypond[verbatim,quote,relative=2]
187 <<
188   \new Staff { c1 c }
189   \new Staff { c1 c }
190 >>
191 @end lilypond
192
193 @code{StaffGroup} コンテキストでは、グループは角括弧で始まり、@c
194 小節線はすべての譜を貫いて刻譜されます。
195
196 @lilypond[verbatim,quote,relative=2]
197 \new StaffGroup <<
198   \new Staff { c1 c }
199   \new Staff { c1 c }
200 >>
201 @end lilypond
202
203 @code{ChoirStaff} では、グループは角括弧で始まりますが、小節線はつながりません。
204
205 @lilypond[verbatim,quote,relative=2]
206 \new ChoirStaff <<
207   \new Staff { c1 c }
208   \new Staff { c1 c }
209 >>
210 @end lilypond
211
212 @code{GrandStaff} では、グループは波括弧で始まり、小節線はすべての譜を貫きます。
213
214 @lilypond[verbatim,quote,relative=2]
215 \new GrandStaff <<
216   \new Staff { c1 c }
217   \new Staff { c1 c }
218 >>
219 @end lilypond
220
221 @code{PianoStaff} は @code{GrandStaff} と同一ですが、@c
222 例外として楽器名を刻譜することができます。@c
223 詳細は @ref{Instrument names} を参照してください。
224
225 @lilypond[verbatim,quote,relative=2]
226 \new PianoStaff <<
227   \set PianoStaff.instrumentName = #"Piano"
228   \new Staff { c1 c }
229   \new Staff { c1 c }
230 >>
231 @end lilypond
232
233 各譜グループ化コンテキストはプロパティ @code{systemStartDelimiter} を@c
234 以下の値の 1 つにセットします:
235 @code{SystemStartBar}, @code{SystemStartBrace} あるいは
236 @code{SystemStartBracket}。@c
237 4 つ目の境界線 -- @code{SystemStartSquare} も利用可能ですが、@c
238 これは明示的に指定する必要があります。
239
240 新たな譜グループ化コンテキストを定義することもできます。@c
241 詳細は @ref{Defining new contexts} を参照してください。
242
243
244 @snippets
245
246 @lilypondfile[verbatim,quote,texidoc,doctitle]
247 {use-square-bracket-at-the-start-of-a-staff-group.ly}
248
249 @lilypondfile[verbatim,quote,texidoc,doctitle]
250 {display-bracket-with-only-one-staff-in-a-system.ly}
251
252 @c 未訳
253 @cindex mensurstriche layout
254 @cindex renaissance music)
255 @cindex transcription of mensural music
256 @cindex mensural music, transcription of
257
258 @lilypondfile[verbatim,quote,texidoc,doctitle]
259 {mensurstriche-layout-bar-lines-between-the-staves.ly}
260
261 @seealso
262 音楽用語集:
263 @rglos{brace},
264 @rglos{bracket},
265 @rglos{grand staff}
266
267 記譜法リファレンス:
268 @ref{Instrument names},
269 @ref{Defining new contexts}
270
271 コード断片集:
272 @rlsr{Staff notation}
273
274 内部リファレンス:
275 @rinternals{Staff},
276 @rinternals{StaffGroup},
277 @rinternals{ChoirStaff},
278 @rinternals{GrandStaff},
279 @rinternals{PianoStaff},
280 @rinternals{SystemStartBar},
281 @rinternals{SystemStartBrace},
282 @rinternals{SystemStartBracket},
283 @rinternals{SystemStartSquare}
284
285 @knownissues
286 デフォルトでは @code{PianoStaff} は @code{ChordNames} を受け付けません。
287
288
289 @node ネストされた譜グループ
290 @unnumberedsubsubsec ネストされた譜グループ
291 @translationof Nested staff groups
292
293 @cindex staff, nested (ネストされた譜)
294 @cindex staves, nested (ネストされた譜)
295 @cindex nesting of staves (譜をネストする)
296 @cindex system start delimiters, nested (ネストされたシステムの開始境界線)
297 @cindex nested staff brackets (ネストされた譜の角括弧)
298 @cindex brackets, nesting of (角括弧をネストする)
299 @cindex braces, nesting of (波括弧をネストする)
300
301 譜グループ化コンテキストは任意の深さにネストすることができます。@c
302 そうした場合、それぞれの子コンテキストは、@c
303 親グループの角括弧に隣接して新しい角括弧を作成します。
304
305 @lilypond[verbatim,quote,relative=2]@lilypond[verbatim,quote,relative=2]
306 \new StaffGroup <<
307   \new Staff { c2 c | c2 c }
308   \new StaffGroup <<
309     \new Staff { g2 g | g2 g }
310     \new StaffGroup \with {
311       systemStartDelimiter = #'SystemStartSquare
312     }
313     <<
314       \new Staff { e2 e | e2 e }
315       \new Staff { c2 c | c2 c }
316     >>
317   >>
318 >>
319 @end lilypond
320
321 新たにネストされた譜グループ化コンテキストを定義することができます。@c
322 詳細は @ref{Defining new contexts} を参照してください。
323
324
325 @snippets
326
327 @lilypondfile[verbatim,quote,texidoc,doctitle]
328 {nesting-staves.ly}
329
330 @seealso
331 記譜法リファレンス:
332 @ref{Grouping staves},
333 @ref{Instrument names},
334 @ref{Defining new contexts}
335
336 コード断片集:
337 @rlsr{Staff notation}
338
339 内部リファレンス:
340 @rinternals{StaffGroup},
341 @rinternals{ChoirStaff},
342 @rinternals{SystemStartBar},
343 @rinternals{SystemStartBrace},
344 @rinternals{SystemStartBracket},
345 @rinternals{SystemStartSquare}
346
347
348 @c 未訳
349 @node Separating systems
350 @unnumberedsubsubsec Separating systems
351
352 @cindex system separator mark
353
354 If the number of systems per page changes from page to page it is
355 customary to separate the systems by placing a system separator mark
356 between them.  By default the system separator is blank, but can be
357 turned on with a @code{\paper} option.
358
359 @c \book is required here to display the system separator
360 @c ragged-right is required as there are two systems
361 @lilypond[verbatim,quote,ragged-right]
362 \book {
363   \score {
364     \new StaffGroup <<
365       \new Staff {
366         \relative c'' {
367           c4 c c c
368           \break
369           c4 c c c
370         }
371       }
372       \new Staff {
373         \relative c'' {
374           c4 c c c
375           \break
376           c4 c c c
377         }
378       }
379     >>
380   }
381   \paper {
382     system-separator-markup = \slashSeparator
383     % following commands are needed only to format this documentation
384     paper-width = 100\mm
385     paper-height = 100\mm
386     tagline = ##f
387   }
388 }
389 @end lilypond
390
391 @seealso
392 記譜法リファレンス:
393 @ref{Page layout}
394
395 コード断片集:
396 @rlsr{Staff notation}.
397
398
399 @node 個々の譜を変更する
400 @subsection 個々の譜を変更する
401 @translationof Modifying single staves
402
403 このセクションでは、譜の属性を変更する方法について説明します:
404 例えば、譜線の本数や譜サイズを変更します。@c
405 譜を開始/終了する方法とオッシア セクションをセットする方法についても記述します。
406
407 @menu
408 * 譜シンボル::
409 * オッシア譜::
410 * 譜を隠す::
411 @end menu
412
413
414 @node 譜シンボル
415 @unnumberedsubsubsec 譜シンボル
416 @translationof Staff symbol
417
418 @cindex staff symbol (譜シンボル)
419 @cindex staff lines, stopping and starting (譜線を停止、開始する)
420 @cindex staff lines, modifying (譜線を変更する)
421 @cindex ledger lines (加線)
422 @cindex ledger lines, internal (内部の加線)
423 @cindex ledger lines, modifying (加線を変更する)
424
425 @funindex \startStaff
426 @funindex startStaff
427 @funindex \stopStaff
428 @funindex stopStaff
429
430 @code{\stopStaff} コマンドと @code{\startStaff} コマンドを使って、@c
431 楽譜内の任意の場所で譜線を停止あるいは (再) 開始させることができます。
432
433 @lilypond[verbatim,quote,relative=2]
434 \stopStaff f4 d \startStaff g, e
435 f'4 d \stopStaff g, e
436 f'4 d \startStaff g, e
437 @end lilypond
438 +
439 @predefined
440 @code{\startStaff},
441 @code{\stopStaff}
442 @endpredefined
443
444 @code{StaffSymbol} グラフィカル オブジェクト (加線を含む) に属する譜の線は@c
445 @code{StaffSymbol} プロパティを用いて変更することができます。@c
446 しかしながら、変更は譜が (再) 開始する前に行う必要があります。
447
448 譜線の本数を変更することができます:
449
450 @lilypond[verbatim,quote,relative=2]
451 f4 d \stopStaff
452 \override Staff.StaffSymbol.line-count = #2
453 \startStaff g, e |
454
455 f'4 d \stopStaff
456 \revert Staff.StaffSymbol.line-count
457 \startStaff g, e |
458 @end lilypond
459
460 各譜線の位置を変更することもできます。@c
461 値の単位は譜線の間隔の @emph{半分} で、@c
462 新しい位置は通常の中央線からの相対位置です。@c
463 1 つの値に対して 1 本の譜線が譜刻されるので、@c
464 1 つのオーバライドで譜線の位置と本数を変更することができます。
465
466 @lilypond[verbatim,quote,relative=2]
467 f4 d \stopStaff
468 \override Staff.StaffSymbol.line-positions = #'(1 3 5 -1 -3)
469 \startStaff g, e |
470 f'4 d \stopStaff
471 \override Staff.StaffSymbol.line-positions = #'(8 6.5 -6 -8 -0.5)
472 \startStaff g, e
473 @end lilypond
474
475 新しい譜線に対応して、@c
476 音部記号とミドル C の位置を調節する必要があるかもしれません。@c
477 @ref{Clef} を参照してください。
478
479 譜線の太さを変えることができます。@c
480 デフォルトでは、加線 (訳者注: ledger line, 譜の上下に突き出た符頭と符幹に@c
481 付けられる短い譜線) と符幹の太さも影響を受けます。@c
482
483 @lilypond[verbatim,quote,relative=2]
484 \new Staff \with {
485   \override StaffSymbol.thickness = #3
486 }
487 { f4 d g, e }
488 @end lilypond
489
490 しかしながら、加線の太さを譜線の太さから独立して設定することができます。@c
491 2 つの値は譜線の太さと譜線の間隔に掛け算され、@c
492 それらを加算した値が加線の太さになります。
493
494 @lilypond[verbatim,quote,relative=2]
495 \new Staff \with {
496   \override StaffSymbol.thickness = #2
497   \override StaffSymbol.ledger-line-thickness = #'(0.5 . 0.4)
498 }
499 { f'4 a, a,, f }
500 @end lilypond
501
502 加線の垂直方向の位置を変更することができます:
503
504 @lilypond[verbatim,quote,relative=2]
505 \new Staff \with {
506   \override StaffSymbol.ledger-positions = #'(-3 -2 -1 2 5 6)
507 }
508 { f'4 a, a,, f }
509 @end lilypond
510
511 符頭の位置と加線を持つ他の符頭との関係に応じて、@c
512 符頭の上または下に追加の加線を配置することできます。
513
514 @lilypond[verbatim,quote,relative=2]
515 \new Staff \with {
516   \override StaffSymbol.ledger-extra = #4
517 }
518 { f'4 a, d, f, }
519 @end lilypond
520
521 譜の内部に加線を表示させることもできます。@c
522 この場合、譜線のカスタマイズが必要です。@c
523 以下の例は明示的に @code{ledger-position} をセットしない場合とした場合の@c
524 加線のデフォルト位置を示しています。@c
525 以下の例で、@code{StaffSymbol} 全体に対する @code{\override} を元に戻すには@c
526 @code{\stopStaff} を行う必要があります。
527
528 @lilypond[fragment,quote,relative=1]
529 \override Staff.StaffSymbol.line-positions =   #'(-8 0 2 4)
530 d4 e f g
531 \stopStaff
532 \startStaff
533 \override Staff.StaffSymbol.ledger-positions = #'(-8 -6 (-4 -2) 0)
534 d4 e f g
535 @end lilypond
536
537 譜線の間隔を変えることができます。この設定は加線の間隔にも影響を与えます。
538
539 @lilypond[verbatim,quote,relative=2]
540 \new Staff \with {
541   \override StaffSymbol.staff-space = #1.5
542 }
543 { f'4 d, g, e, }
544 @end lilypond
545
546 @snippets
547 @lilypondfile[verbatim,quote,texidoc,doctitle]
548 {making-some-staff-lines-thicker-than-the-others.ly}
549
550 @seealso
551 音楽用語集:
552 @rglos{line},
553 @rglos{ledger line},
554 @rglos{staff}
555
556 記譜法リファレンス:
557 @ref{Clef}
558
559 コード断片集:
560 @rlsr{Staff notation}
561
562 内部リファレンス:
563 @rinternals{StaffSymbol},
564 @rinternals{staff-symbol-interface}
565
566
567 @node オッシア譜
568 @unnumberedsubsubsec オッシア譜
569 @translationof Ossia staves
570
571 @c 未訳
572 @cindex staff, Frenched
573 @cindex ossia (オッシア)
574 @c 未訳
575 @cindex Frenched staves
576 @cindex staff, resizing of (譜をリサイズする)
577 @cindex resizing of staves (譜をリサイズする)
578
579 @funindex \startStaff
580 @funindex startStaff
581 @funindex \stopStaff
582 @funindex stopStaff
583
584 適切な位置で新しく同時進行の譜を作成することによって、@c
585 @notation{オッシア} 譜をセットすることができます:
586
587 @lilypond[verbatim,quote]
588 \new Staff \relative c'' {
589   c4 b d c
590   <<
591     { c4 b d c }
592     \new Staff { e4 d f e }
593   >>
594   c4 b c2
595 }
596 @end lilypond
597
598 @noindent
599 しかしながら、上の例は通常は望ましいものではありません。@c
600 オリジナルの譜の上にあり、拍子記号や音部記号を持たず、@c
601 小さなサイズのフォントを使用するオッシア譜を作成するには調整が必要です。@c
602 学習マニュアルの @rlearning{Nesting music expressions} に望ましいオッシア譜を@c
603 作成するための方法が記述されています。
604
605 以下の例は、オッシア譜をオリジナルの譜の上に配置するために
606 @code{alignAboveContext} プロパティを用いています。@c
607 この手法は、2, 3 のオッシア譜が必要とされているだけである場合であれば、@c
608 最も適切な方法です。
609
610 @lilypond[verbatim,quote]
611 \new Staff = main \relative c'' {
612   c4 b d c
613   <<
614     { c4 b d c }
615
616     \new Staff \with {
617       \remove "Time_signature_engraver"
618       alignAboveContext = #"main"
619       fontSize = #-3
620       \override StaffSymbol.staff-space = #(magstep -3)
621       \override StaffSymbol.thickness = #(magstep -3)
622       firstClef = ##f
623     }
624     { e4 d f e }
625   >>
626   c4 b c2
627 }
628 @end lilypond
629
630 多くの別個のオッシア譜が必要である場合、@c
631 ある特有の @emph{コンテキスト ID} を持つ空の @code{Staff} コンテキストを@c
632 作成する方が適切かもしれません:
633 このコンテキストを @emph{呼び出し}、@c
634 オッシア譜が必要とされる場所で @code{\startStaff} と @code{\stopStaff}
635 を用いることでオッシア譜が作成されます。@c
636 この手法の利点は、以下の例よりも長い楽曲であれば、明らかです。
637
638 @lilypond[verbatim,quote,ragged-right]
639 <<
640   \new Staff = ossia \with {
641     \remove "Time_signature_engraver"
642     \hide Clef
643     fontSize = #-3
644     \override StaffSymbol.staff-space = #(magstep -3)
645     \override StaffSymbol.thickness = #(magstep -3)
646   }
647   { \stopStaff s1*6 }
648
649   \new Staff \relative c' {
650     c4 b c2
651     <<
652       { e4 f e2 }
653       \context Staff = ossia {
654         \startStaff e4 g8 f e2 \stopStaff
655       }
656     >>
657     g4 a g2 \break
658     c4 b c2
659     <<
660       { g4 a g2 }
661       \context Staff = ossia {
662         \startStaff g4 e8 f g2 \stopStaff
663       }
664     >>
665     e4 d c2
666   }
667 >>
668 @end lilypond
669
670 オッシア譜を作成するための代替手段として、@c
671 @code{\RemoveEmptyStaffContext} コマンドが用いられるかもしれません。@c
672 この手法は、オッシア譜が改行の直後に発生する場合、最も便利な手法です。@c
673 @c そのようなケースでは、空白休符を使用する必要はまったくありません:
674 @c @code{\startStaff} と @code{\stopStaff} が必要であるだけです。@c
675 @code{\RemoveEmptyStaffContext} についての更なる情報は、@c
676 @ref{Hiding staves} を参照してください。
677
678 @lilypond[verbatim,quote,ragged-right]
679 <<
680   \new Staff = ossia \with {
681     \remove "Time_signature_engraver"
682     \hide Clef
683     fontSize = #-3
684     \override StaffSymbol.staff-space = #(magstep -3)
685     \override StaffSymbol.thickness = #(magstep -3)
686   } \relative c'' {
687     R1*3
688     c4 e8 d c2
689   }
690   \new Staff \relative c' {
691     c4 b c2
692     e4 f e2
693     g4 a g2 \break
694     c4 b c2
695     g4 a g2
696     e4 d c2
697   }
698 >>
699
700 \layout {
701   \context {
702     \Staff \RemoveEmptyStaves
703     \override VerticalAxisGroup.remove-first = ##t
704   }
705 }
706 @end lilypond
707
708
709 @snippets
710
711 @lilypondfile[verbatim,quote,texidoc,doctitle]
712 {vertically-aligning-ossias-and-lyrics.ly}
713
714 @seealso
715 音楽用語集:
716 @rglos{ossia},
717 @rglos{staff},
718 @rglos{Frenched staff}
719
720 学習マニュアル:
721 @rlearning{Nesting music expressions},
722 @rlearning{Size of objects},
723 @rlearning{Length and thickness of objects}
724
725 記譜法リファレンス:
726 @ref{Hiding staves}
727
728 コード断片集:
729 @rlsr{Staff notation}
730
731 内部リファレンス:
732 @rinternals{StaffSymbol}
733
734
735 @node 譜を隠す
736 @unnumberedsubsubsec 譜を隠す
737 @translationof Hiding staves
738
739 @c 未訳
740 @cindex Frenched score
741 @c 未訳
742 @cindex Frenched staff
743 @cindex staff, hiding (譜を隠す)
744 @cindex staff, empty (空の譜)
745 @cindex hiding of staves (譜を隠す)
746 @cindex empty staves (空の譜)
747
748 @funindex \RemoveEmptyStaves
749 @funindex Staff_symbol_engraver
750 @funindex \stopStaff
751 @funindex stopStaff
752
753 @code{Staff} コンテキストから @code{Staff_symbol_engraver} を@c
754 削除することによって、譜線を隠すことができます。@c
755 そうする代わりに、@code{\stopStaff} を用いることもできます。
756
757 @lilypond[verbatim,quote]
758 \new Staff \with {
759   \remove "Staff_symbol_engraver"
760 }
761 \relative c''' { a8 f e16 d c b a2 }
762 @end lilypond
763
764 @c 未訳: Frenched Score
765 @code{\layout} ブロックの中で
766 @code{\RemoveEmptyStaffContext} コマンドをセットすることによって、@c
767 空の譜を隠すことができます。@c
768 オーケストラ譜では、@c
769 このようなスタイルの譜は @q{Frenched Score} として知られています。@c
770 デフォルトでは、このコマンドは@c
771 最初のシステム以外のところにあるすべての空の譜を隠して、削除します。
772
773 @warning{譜が空であると見なされるのは、@c
774 それが複数小節にわたる休符、休符、スキップ、空白休符、@c
775 あるいはそれらの要素の組み合わせだけで構成されている場合です。}
776
777 @lilypond[verbatim,quote,ragged-right]
778 \layout {
779   \context {
780     \Staff \RemoveEmptyStaves
781   }
782 }
783
784 \relative c' <<
785   \new Staff {
786     e4 f g a \break
787     b1 \break
788     a4 b c2
789   }
790   \new Staff {
791     c,4 d e f \break
792     R1 \break
793     f4 g c,2
794   }
795 >>
796 @end lilypond
797
798 @cindex ossia (オッシア)
799
800 @noindent
801 譜に対してオッシア セクションを作成するために、@c
802 @code{\RemoveEmptyStaffContext} を用いることもできます。@c
803 詳細は @ref{Ossia staves} を参照してください。
804
805 @cindex hiding ancient staves (古代譜を隠す)
806 @cindex hiding rhythmic staves (リズム譜を隠す)
807
808 @funindex \RemoveEmptyStaves
809
810 古代音楽コンテキストの中にある空の譜を隠すために、@c
811 @code{\VaticanaStaff \RemoveEmptyStaves} コマンドが用いられることがあります。@c
812 同様に、空の @code{RhythmicStaff} コンテキストを隠すために、@c
813 @code{\RhythmicStaff \RemoveEmptyStaves} が用いられることがあります。
814
815
816 @predefined
817 @code{\Staff \RemoveEmptyStaves},
818 @code{\VaticanaStaff \RemoveEmptyStaves},
819 @code{\RhythmicStaff \RemoveEmptyStaves}
820 @endpredefined
821
822
823 @snippets
824
825 @lilypondfile[verbatim,quote,texidoc,doctitle]
826 {removing-the-first-empty-line.ly}
827
828 @seealso
829 音楽用語集:
830 @rglos{Frenched staff}
831
832 学習マニュアル:
833 @rlearning{Visibility and color of objects}
834
835 記譜法リファレンス:
836 @ref{Changing context default settings},
837 @ref{Staff symbol},
838 @ref{Ossia staves},
839 @ref{Hidden notes},
840 @ref{Invisible rests},
841 @ref{Visibility of objects}
842
843 コード断片集:
844 @rlsr{Staff notation}
845
846 内部リファレンス:
847 @rinternals{ChordNames},
848 @rinternals{FiguredBass},
849 @rinternals{Lyrics},
850 @rinternals{Staff},
851 @rinternals{VerticalAxisGroup},
852 @rinternals{Staff_symbol_engraver}
853
854 @knownissues
855 @code{Staff_symbol_engraver} を削除すると、小節線も隠されます。@c
856 小節線が強制的に可視になるよう設定されている場合、@c
857 フォーマット エラーが発生するかもしれません。@c
858 そのような場合は、エングラーバを削除する代わりに、@c
859 以下のオーバライドを使用してください:
860
861 @example
862 \omit StaffSymbol
863 \override NoteHead.no-ledgers = ##t
864 @end example
865
866 @code{\Staff \RemoveEmptyStaves} に関連する既知の問題と警告は
867 @ref{Changing context default settings} を参照してください。
868
869
870 @node パートを記述する
871 @subsection パートを記述する
872 @translationof Writing parts
873
874 このセクションでは、テンポ指示と楽器名を楽譜に挿入する方法について説明します。@c
875 他のボイスを引用する方法と、演奏指示音符を譜刻する方法についても記述します。
876
877 @menu
878 * 楽器名::
879 * 他のボイスを引用する::
880 * 合図音符をフォーマットする::
881 @end menu
882
883
884 @node 楽器名
885 @unnumberedsubsubsec 楽器名
886 @translationof Instrument names
887
888 @cindex instrument names (楽器名)
889 @cindex instrument names, short (短縮楽器名)
890
891 @code{Staff}, @code{PianoStaff}, @code{StaffGroup}, @code{GrandStaff}
892 それに @code{ChoirStaff} コンテキストの中にある譜の左側に、@c
893 楽器名を譜刻することができます。@c
894 @code{instrumentName} の値が最初の行の譜に対して使用され、@c
895 @code{shortInstrumentName} の値がそれに続くすべての@c
896 行の譜に対して使用されます。
897
898 @lilypond[verbatim,quote,ragged-right,relative=1]
899 \new Staff \with {
900   instrumentName = #"Violin "
901   shortInstrumentName = #"Vln. "
902 }
903 { c4.. g'16 c4.. g'16 \break | c1 }
904 @end lilypond
905
906 @cindex instrument names, complex (複雑な楽器名)
907
908 @code{\markup} を用いて、より複雑な楽器名を作成することができます:
909
910 @lilypond[verbatim,quote,relative=2]
911 \new Staff \with {
912   instrumentName = \markup {
913     \column { "Clarinetti"
914       \line { "in B" \smaller \flat }
915     }
916   }
917 }
918 { c4 c,16 d e f g2 }
919 @end lilypond
920
921 @cindex instrument names, centering (楽器名を中央揃えする)
922
923 2 つ以上の譜コンテキストがグループ化されている場合、@c
924 デフォルトでは楽器名と短縮楽器名は中央揃えされます。@c
925 複数行にわたる楽器名を中央揃えするには、@c
926 @code{\center-column} を用いる必要があります:
927
928 @lilypond[verbatim,quote,indent=1.5\cm,relative=2]
929 <<
930   \new Staff \with {
931     instrumentName = #"Flute"
932   }
933   { f2 g4 f }
934   \new Staff \with {
935     instrumentName = \markup {
936       \center-column { "Clarinet"
937         \line { "in B" \smaller \flat }
938       }
939     }
940   }
941   { c4 b c2 }
942 >>
943 @end lilypond
944
945 @funindex indent
946 @funindex short-indent
947
948 しかしながら、楽器名が長い場合、@code{indent} 設定と @code{short-indent}
949 設定の値を増やさない限り、譜グループの中にある楽器名は中央揃えされません。@c
950 これらの設定についての詳細は @ref{シフトとインデントのための paper 変数,,シフトとインデントのための @code{@bs{}paper} 変数}
951 を参照してください。
952
953 @lilypond[verbatim,quote,ragged-right]
954 \relative c'' {
955   <<
956     \new Staff \with {
957       instrumentName = #"Alto Flute in G"
958       shortInstrumentName = #"Flt."
959     }
960     {
961       f2 g4 f \break
962       g4 f g2
963     }
964     \new Staff \with {
965       instrumentName = #"Clarinet"
966       shortInstrumentName = #"Clar."
967     }
968     {
969       c,4 b c2 \break
970       c2 b4 c
971     }
972   >>
973 }
974
975 \layout {
976   indent = 3.0\cm
977   short-indent = 1.5\cm
978 }
979 @end lilypond
980
981 @cindex instrument names, adding to other contexts (楽器名を他のコンテキストに付け加える)
982
983 楽器名を他のコンテキスト (@code{ChordNames} や @code{FiguredBass} など)
984 に付け加えるには、
985 そのコンテキストに @code{Instrument_name_engraver} を追加する必要があります。@c
986 詳細は @ref{Modifying context plug-ins} を参照してください。
987
988 @cindex instrument names, changing (楽器名を変更する)
989 @cindex changing instrument names (楽器名を変更する)
990
991 楽曲の途中で @code{shortInstrumentName} を変更することもできます。@c
992 しかしながら、@code{instrumentName} は最初のインスタンスが譜刻され、@c
993 楽曲の途中での変更は無視されます:
994
995 @lilypond[verbatim,quote,ragged-right,relative=1]
996 \new Staff \with {
997   instrumentName = #"Flute"
998   shortInstrumentName = #"Flt."
999 }
1000 {
1001   c1 c c c \break
1002   c1 c c c \break
1003   \set Staff.instrumentName = #"Clarinet"
1004   \set Staff.shortInstrumentName = #"Clt."
1005   c1 c c c \break
1006   c1 c c c \break
1007 }
1008 @end lilypond
1009
1010 @cindex instrument switch (楽器を切り換える)
1011 @cindex switching instruments (楽器を切り換える)
1012
1013 @funindex \addInstrumentDefinition
1014 @funindex addInstrumentDefinition
1015 @funindex \instrumentSwitch
1016 @funindex instrumentSwitch
1017
1018 楽器の @emph{切り替え} が必要な場合、切り替えのために必要とされる@c
1019 変更の詳細なリストを作成するために、@code{\addInstrumentDefinition} を
1020 @code{\instrumentSwitch} と組み合わせて使用することがあります。@c
1021 @code{\addInstrumentDefinition} コマンドは 2 つの引数をとります:
1022 識別文字列と、楽器で使用されるコンテキスト プロパティと値の連想リストです。@c
1023 このコマンドは最上位のスコープに配置する必要があります。@c
1024 @code{\instrumentSwitch} は音楽表記の中で使用され、楽器の切り替えを宣言します:
1025
1026 @lilypond[verbatim,quote,ragged-right]
1027 \addInstrumentDefinition #"contrabassoon"
1028   #`((instrumentTransposition . ,(ly:make-pitch -1 0 0))
1029      (shortInstrumentName . "Cbsn.")
1030      (clefGlyph . "clefs.F")
1031      (middleCPosition . 6)
1032      (clefPosition . 2)
1033      (instrumentCueName . ,(make-bold-markup "cbsn."))
1034      (midiInstrument . "bassoon"))
1035
1036 \new Staff \with {
1037   instrumentName = #"Bassoon"
1038 }
1039 \relative c' {
1040   \clef tenor
1041   \compressFullBarRests
1042   c2 g'
1043   R1*16
1044   \instrumentSwitch "contrabassoon"
1045   c,,2 g \break
1046   c,1 ~ | c1
1047 }
1048 @end lilypond
1049
1050
1051 @seealso
1052 記譜法リファレンス:
1053 @ref{シフトとインデントのための paper 変数,,シフトとインデントのための @code{@bs{}paper} 変数},
1054 @ref{Modifying context plug-ins}
1055
1056 コード断片集:
1057 @rlsr{Staff notation}
1058
1059 内部リファレンス:
1060 @rinternals{InstrumentName},
1061 @rinternals{PianoStaff},
1062 @rinternals{Staff}
1063
1064
1065 @node 他のボイスを引用する
1066 @unnumberedsubsubsec 他のボイスを引用する
1067 @translationof Quoting other voices
1068
1069 @cindex quote, voices (ボイスの引用)
1070 @cindex voices, quoting (ボイスを引用する)
1071 @cindex fragments, quoting (楽曲の断片を引用する)
1072 @cindex cue notes (演奏指示音符)
1073
1074 @funindex \addQuote
1075 @funindex addQuote
1076 @funindex \quoteDuring
1077 @funindex quoteDuring
1078 @funindex \transposition
1079 @funindex transposition
1080
1081 あるボイスが他のボイスと同じ音符を演奏することはごく一般的なことです。@c
1082 例えば、第 1 バイオリンと第2バイオリンがあるパッセージで同じフレーズを@c
1083 演奏することがあります。@c
1084 これは、ボイスに他のボイスを @emph{引用} させることで実現でき、@c
1085 第 2 ボイスの音楽全体を再入力する必要はありません。
1086
1087 最上位レベルのスコープで用いる @code{\addQuote} コマンドは@c
1088 一部を引用することができる音楽を定義します。
1089
1090 @code{\quoteDuring} コマンドを用いて、引用を開始する位置を示します。@c
1091 このコマンドは 2 つの引数をとります:
1092 @code{\addQuote} で定義した引用するボイスの名前と、@c
1093 引用部分の演奏時間を示す音楽表記です。
1094
1095 @lilypond[verbatim,quote]
1096 fluteNotes = \relative c'' {
1097   a4 gis g gis | b4^"quoted" r8 ais\p a4( f)
1098 }
1099
1100 oboeNotes = \relative c'' {
1101   c4 cis c b \quoteDuring #"flute" { s1 }
1102 }
1103
1104 \addQuote "flute" { \fluteNotes }
1105
1106 \score {
1107   <<
1108     \new Staff \with { instrumentName = "Flute" } \fluteNotes
1109     \new Staff \with { instrumentName = "Oboe" } \oboeNotes
1110   >>
1111 }
1112 @end lilypond
1113
1114 @code{\quoteDuring} で使用される音楽表記が空白休符や複数小節休符ではなく@c
1115 音符を保持している場合、@c
1116 引用は多声となり、予期しない結果となる可能性があります。
1117
1118 @lilypond[verbatim,quote]
1119 fluteNotes = \relative c'' {
1120   a4 gis g gis | b4^"quoted" r8 ais\p a4( f)
1121 }
1122
1123 oboeNotes = \relative c'' {
1124   c4 cis c b \quoteDuring #"flute" { e4 r8 ais b4 a }
1125 }
1126
1127 \addQuote "flute" { \fluteNotes }
1128
1129 \score {
1130   <<
1131     \new Staff \with { instrumentName = "Flute" } \fluteNotes
1132     \new Staff \with { instrumentName = "Oboe" } \oboeNotes
1133   >>
1134 }
1135 @end lilypond
1136
1137 @code{\quoteDuring} コマンドは引用されるパートと引用するパート両方の
1138 @code{\transposition} を使用して、@c
1139 引用されるパートと同じ響きのピッチに変換して、@c
1140 引用するパートの音符を作り出します。
1141
1142 @lilypond[verbatim,quote]
1143 clarinetNotes = \relative c'' {
1144   \transposition bes
1145   \key d \major
1146   b4 ais a ais | cis4^"quoted" r8 bis\p b4( f)
1147 }
1148
1149 oboeNotes = \relative c'' {
1150   c4 cis c b \quoteDuring #"clarinet" { s1 }
1151 }
1152
1153 \addQuote "clarinet" { \clarinetNotes }
1154
1155
1156 \score {
1157   <<
1158     \new Staff \with { instrumentName = "Clarinet" } \clarinetNotes
1159     \new Staff \with { instrumentName = "Oboe" } \oboeNotes
1160   >>
1161 }
1162 @end lilypond
1163
1164 @cindex note-event
1165 @cindex articulation-event
1166 @cindex dynamic-event
1167 @cindex rest-event
1168
1169 @funindex quotedEventTypes
1170 @funindex quotedCueEventTypes
1171
1172 デフォルトでは引用される音楽はすべてのアーティキュレーション、強弱記号、@c
1173 マークアップ等を含んでいます。@c
1174 @code{quotedEventTypes} コンテキスト プロパティを用いることで、@c
1175 引用される音楽から引用するオブジェクトを選択することが可能です。
1176
1177 @lilypond[verbatim,quote]
1178 fluteNotes = \relative c'' {
1179   a2 g2 |
1180   b4\<^"quoted" r8 ais a4\f( c->)
1181  }
1182
1183 oboeNotes = \relative c'' {
1184   c2. b4 |
1185   \quoteDuring #"flute" { s1 }
1186 }
1187
1188 \addQuote "flute" { \fluteNotes }
1189
1190 \score {
1191   <<
1192     \set Score.quotedEventTypes = #'(note-event articulation-event
1193                                      crescendo-event rest-event
1194                                      slur-event dynamic-event)
1195     \new Staff \with { instrumentName = "Flute" } \fluteNotes
1196     \new Staff \with { instrumentName = "Oboe" } \oboeNotes
1197   >>
1198 }
1199 @end lilypond
1200
1201 引用にもタグを付けることができます。@c
1202 @ref{Using tags} を参照してください。
1203
1204 @seealso
1205 記譜法リファレンス:
1206 @ref{Instrument transpositions},
1207 @ref{Using tags}
1208
1209 コード断片集:
1210 @rlsr{Staff notation}
1211
1212 内部リファレンス:
1213 +@rinternals{Music classes},
1214 @rinternals{QuoteMusic},
1215 @rinternals{Voice}
1216
1217 @knownissues
1218 @code{\addQuote} 中にある最初の @code{Voice} の内容だけが引用されます。@c
1219 そのため、音楽表記が @code{\new} や @code{\context Voice} を含んでいても、@c
1220 それらの内容は引用されません。@c
1221 装飾小音符の引用はサポートされておらず、@c
1222 LilyPond がクラッシュする可能性さえあります。
1223 ネストされた連符を引用しようとしてもうまくいきません。
1224
1225
1226 @node 合図音符をフォーマットする
1227 @unnumberedsubsubsec 合図音符をフォーマットする
1228 @translationof Formatting cue notes
1229
1230 @cindex cue notes (合図音符)
1231 @cindex fragments (楽譜の一部分)
1232 @cindex cue notes, formatting (合図音符をフォーマットする)
1233 @cindex formatting, cue notes (合図音符をフォーマットする)
1234 @cindex voices, quoting(ボイスを引用する)
1235
1236 @funindex \cueDuring
1237 @funindex cueDuring
1238 @funindex \cueClef
1239 @funindex cueClef
1240 @funindex \cueDuringWithClef
1241 @funindex cueDuringWithClef
1242 @funindex \quoteDuring
1243 @funindex quoteDuring
1244
1245 @cindex notes, smaller (小さな音符)
1246 @cindex smaller notes (小さな音符)
1247 @cindex CueVoice
1248
1249 合図音符をフォーマットする最も簡単な方法は、@c
1250 パートの中で明示的に @code{CueVoice} コンテキストを作成することです。
1251
1252 @lilypond[verbatim,relative=1]
1253 R1
1254 <<
1255   { e2\rest r4. e8 }
1256   \new CueVoice {
1257     \stemUp d'8^"flute" c d e fis2
1258   }
1259 >>
1260 d,4 r a r
1261 @end lilypond
1262
1263 音部記号の変更が必要で、合図音符に適切なサイズの音部記号を譜刻する場合、@c
1264 @code{\cueClef} コマンドは明示的な @code{CueVoice} コンテキストと共に@c
1265 用いられます。@c
1266 その後、@code{\cueClefUnset} コマンドを用いて、@c
1267 オリジナルの音部記号 -- 再度、適切なサイズにされた -- に戻すことができます。
1268
1269 @lilypond[verbatim,noragged-right,relative=1]
1270 \clef "bass"
1271 R1
1272 <<
1273   { e2\rest r4. \cueClefUnset e,8 }
1274   \new CueVoice {
1275     \cueClef "treble" \stemUp d''8^"flute" c d e fis2
1276   }
1277 >>
1278 d,,4 r a r
1279 @end lilypond
1280
1281 必要があれば、@code{CueVoice} 無しで
1282 @code{\cueClef} コマンドと @code{\cueClefUnset} コマンドを用いることもできます。
1283
1284 @lilypond[verbatim,noragged-right,relative=1]
1285 \clef "bass"
1286 R1
1287 \cueClef "treble"
1288 d'8^"flute" c d e fis2
1289 \cueClefUnset
1290 d,,4 r a r
1291 @end lilypond
1292
1293 もっと複雑な合図音符
1294 -- 例えば、移調を含んでいる、複数の音楽ソースからの合図音符を挿入する --
1295 の場合、@c
1296 @code{\cueDuring} コマンドや @code{\cueDuringWithClef} コマンドを@c
1297 用いることができます。@c
1298 これらのコマンドは @code{\quoteDuring} を特殊化したものです。@c
1299 @code{\quoteDuring} については、@c
1300 前のセクションの @ref{Quoting other voices} を参照してください。
1301
1302 構文は以下の通りです:
1303
1304 @example
1305 \cueDuring #@var{quotename} #@var{direction} #@var{music}
1306 @end example
1307
1308
1309
1310 @example
1311 \cueDuringWithClef #@var{quotename} #@var{direction} #@var{clef} #@var{music}
1312 @end example
1313
1314 @code{@var{quotename}} に対応する小節の音楽は
1315 @code{CueVoice} コンテキストとして追加されて
1316 @code{@var{music}} と同時進行して、@c
1317 多声になります。@c
1318 @code{@var{direction}} は引数 @code{UP} または @code{DOWN} を取り、@c
1319 それぞれ第 1 及び第 2 ボイスと調和して、@c
1320 合図音符が他のボイスに対してどのように譜刻されるかを決定します。
1321
1322 このコマンドは @code{@var{partname}} の該当する小節から音符と休符だけを
1323 @code{CueVoice} にコピーします。@c
1324 @code{CueVoice} は暗黙的に作成されて @code{@var{music}} と同時進行し、@c
1325 結果として多声になります。@c
1326 引数 @code{@var{voice}} は合図音符を第 1 ボイスとして記譜すべきか、@c
1327 第 2 ボイスとして記譜すべきかを決定します。@c
1328 @code{UP} は第 1 ボイスに相当し、@code{DOWN} は第 2 ボイスに相当します。
1329
1330 @lilypond[verbatim,quote]
1331 fluteNotes = \relative c'' {
1332   r2. c4 | d8 c d e fis2 | g2 d |
1333 }
1334
1335 oboeNotes = \relative c'' {
1336   R1
1337   \new CueVoice { \set instrumentCueName = "flute" }
1338   \cueDuring #"flute" #UP { R1 }
1339   g2 c,
1340 }
1341
1342 \addQuote "flute" { \fluteNotes }
1343
1344 \new Staff {
1345   \oboeNotes
1346 }
1347 @end lilypond
1348
1349 @noindent
1350
1351 @code{instrumentCueName} プロパティを設定することによって、@c
1352 @code{\cueDuring} で音楽のどの側面を引用するか調節することができます。@c
1353 このプロパティのデフォルト値は @code{'(note-event rest-event
1354 tie-event beam-event tuplet-span-event)} であり、音符、休符、タイ、連桁、@c
1355 それに連符だけが引用され、アーティキュレーション、強弱記号、マークアップ等は@c
1356 引用されません。
1357
1358 @warning{以下の例のように @code{Voice} が @code{\cueDuring} で始まる場合、@c
1359 @code{Voice} を明示的に宣言する必要があります。@c
1360 そうしないと音楽表記全体が @code{CueVoice} コンテキストに属してしまいます。}
1361
1362 @lilypond[verbatim,quote]
1363 oboeNotes = \relative c'' {
1364   r2 r8 d16(\f f e g f a)
1365   g8 g16 g g2.
1366 }
1367 \addQuote "oboe" { \oboeNotes }
1368
1369 \new Voice \relative c'' {
1370   \set Score.quotedCueEventTypes = #'(note-event rest-event tie-event
1371                                       beam-event tuplet-span-event
1372                                       dynamic-event slur-event)
1373   \cueDuring #"oboe" #UP { R1 }
1374   g2 c,
1375 }
1376 @end lilypond
1377
1378 @c ここから L2334
1379 一時的な @code{CueVoice} コンテキストの中の @code{instrumentCueName}
1380 プロパティを設定することで、合図を演奏する楽器の名前を表示させることが@c
1381 できます。@c
1382 @code{instrumentCueName} の位置とスタイルは @code{\instrumentSwitch}
1383 オブジェクトによって制御されます -- @ref{Instrument names} を参照して@c
1384 ください。@c
1385 合図音符が音符記号の変更を必要とする場合、手動で変更することができますが、@c
1386 合図音符が終わったところで手動で元の音部記号に戻す必要がありmす。
1387
1388 @lilypond[verbatim,quote]
1389 fluteNotes = \relative c'' {
1390   r2. c4 d8 c d e fis2 g2 d2
1391 }
1392
1393 bassoonNotes = \relative c {
1394   \clef bass
1395   R1
1396   \clef treble
1397   \new CueVoice { \set instrumentCueName = "flute" }
1398   \cueDuring #"flute" #UP { R1 }
1399   \clef bass
1400   g4. b8 d2
1401 }
1402
1403 \addQuote "flute" { \fluteNotes }
1404
1405 \new Staff {
1406   \bassoonNotes
1407 }
1408 @end lilypond
1409
1410 あるいはまた、代わりに @code{\cueDuringWithClef} 関数を用いることができます。@c
1411 このコマンドは追加の引数で音部の変更を指定して、@c
1412 合図音符に音部記号を譜刻しますが、@c
1413 合図音部が終了したところで元の音部記号を自動的に譜刻します。
1414
1415 @lilypond[verbatim,quote]
1416 fluteNotes = \relative c'' {
1417   r2. c4 d8 c d e fis2 g2 d2
1418 }
1419
1420 bassoonNotes = \relative c {
1421   \clef bass
1422   R1
1423   \new CueVoice { \set instrumentCueName = "flute" }
1424   \cueDuringWithClef #"flute" #UP #"treble" { R1 }
1425   g4. b8 d2
1426 }
1427
1428 \addQuote "flute" { \fluteNotes }
1429
1430 \new Staff {
1431   \bassoonNotes
1432 }
1433 @end lilypond
1434
1435 @funindex \transposedCueDuring
1436 @funindex transposedCueDuring
1437
1438 @code{\quoteDuring} と同様に、@code{\cueDuring} は楽器の移調を考慮します。@c
1439 合図音符は合図を受け取る楽器のピッチで作り出され、@c
1440 ソース楽器の同じ響きのピッチになります。
1441
1442 合図音符を移調させるには @code{\transposedCueDuring} を使用します。@c
1443 このコマンドはコンサート ミドル C の音を表すピッチを (絶対モードで) 指定する@c
1444 追加の引数を取ります。@c
1445 これは、全く別の場所で登録された楽器から合図を取る場合に有用です。
1446
1447 @lilypond[verbatim,quote]
1448 piccoloNotes = \relative c''' {
1449   \clef "treble^8"
1450   R1
1451   c8 c c e g2
1452   c4 g g2
1453 }
1454
1455 bassClarinetNotes = \relative c' {
1456   \key d \major
1457   \transposition bes,
1458   d4 r a r
1459   \transposedCueDuring #"piccolo" #UP d { R1 }
1460   d4 r a r
1461 }
1462
1463 \addQuote "piccolo" { \piccoloNotes }
1464
1465 <<
1466   \new Staff \piccoloNotes
1467   \new Staff \bassClarinetNotes
1468 >>
1469 @end lilypond
1470
1471 @cindex removing cue notes (合図音符を削除する)
1472 @cindex cue notes, removing (合図音符を削除する)
1473
1474 @funindex \killCues
1475 @funindex killCues
1476 @funindex \addInstrumentDefinition
1477 @funindex addInstrumentDefinition
1478
1479 @code{\killCues} コマンドは音楽表記から合図音符を削除します。@c
1480 これにより、同じ音楽表記を使って合図を持つ楽器パートと楽譜を作り出すことが@c
1481 可能です。@c
1482 @code{\killCues} コマンドは @code{\cueDuring} によって引用された@c
1483 音符とイベントだけを削除します。@c
1484 合図に関連する他のマークアップ
1485 -- 音部変更と引用元の楽器を識別するラベルなど --
1486 にはタグを付けて楽譜に含めるかどうかを選択することができます。@c
1487 @ref{Using tags} を参照してください。
1488
1489 @lilypond[verbatim,quote]
1490 fluteNotes = \relative c'' {
1491   r2. c4 d8 c d e fis2 g2 d2
1492 }
1493
1494 bassoonNotes = \relative c {
1495   \clef bass
1496   R1
1497   \tag #'part {
1498     \clef treble
1499   \new CueVoice { \set instrumentCueName = "flute" }
1500   }
1501   \cueDuring #"flute" #UP { R1 }
1502   \tag #'part \clef bass
1503   g4. b8 d2
1504 }
1505
1506 \addQuote "flute" { \fluteNotes }
1507
1508 \new Staff {
1509   \bassoonNotes
1510 }
1511
1512 \new StaffGroup <<
1513   \new Staff {
1514     \fluteNotes
1515   }
1516   \new Staff {
1517     \removeWithTag #'part { \killCues { \bassoonNotes } }
1518   }
1519 >>
1520 @end lilypond
1521
1522 あるいはまた、音部変更や楽器ラベルを再利用するために、@c
1523 @code{\addInstrumentDefinition} を用いて楽器の定義に含めることができます。@c
1524 @code{\addInstrumentDefinition} についての説明は
1525 @ref{Instrument names} を参照してください。
1526
1527 @seealso
1528 記譜法リファレンス:
1529 @ref{Quoting other voices},
1530 @ref{Instrument transpositions},
1531 @ref{Instrument names},
1532 @ref{Clef},
1533 @ref{Musical cues},
1534 @ref{Using tags}
1535
1536 コード断片集:
1537 @rlsr{Staff notation}
1538
1539 内部リファレンス:
1540 @rinternals{CueVoice},
1541 @rinternals{Voice}
1542
1543 @knownissues
1544 @code{\cueDuring} を使用した場合、@code{Voice} コンテキストと @code{CueVoice}
1545 コンテキストの間で休符の衝突が発生する可能性があります。@c
1546 @code{\cueDuringWithClef} や @code{\transposedCueDuring} を使用する場合、@c
1547 追加で必要となる引数は引用と向きの後に配置する必要があります。