]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/ja/notation/editorial.itely
Imported Upstream version 2.19.45
[lilypond.git] / Documentation / ja / notation / editorial.itely
1 @c -*- coding: utf-8; mode: texinfo; documentlanguage: ja -*-
2 @ignore
3     Translation of GIT committish: c1b0482f63f881bd3f67845e5f76a3e04675ef2a
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.19.21"
11
12
13 @c Translators: Yoshiki Sawada
14 @c Translation status: post-GDP
15
16
17 @node 編集者の注釈
18 @section 編集者の注釈
19 @translationof Editorial annotations
20
21 @lilypondfile[quote]{editorial-headword.ly}
22
23 このセクションでは、音符の見た目を変える方法と、@c
24 分析や教育的な強調を付け加える方法について議論します。
25
26 @menu
27 * 譜の内部::
28 * 譜の外部::
29 @end menu
30
31
32 @node 譜の内部
33 @subsection 譜の内部
34 @translationof Inside the staff
35
36 このセクションでは、譜の内部にある要素に強調を付け加える方法について説明します。
37
38 @menu
39 * 記譜フォント サイズを選択する::
40 * 運指の指示::
41 * 隠された音符::
42 * オブジェクトに色を付ける::
43 * 括弧::
44 * 符幹::
45 @end menu
46
47 @node 記譜フォント サイズを選択する
48 @unnumberedsubsubsec 記譜フォント サイズを選択する
49 @translationof Selecting notation font size
50
51 @cindex font size (notation) scaling (フォント サイズ (記譜法) の調整)
52 @cindex font size (notation) (フォント サイズ (記譜法))
53 @cindex selecting font size (notation) (フォント サイズ (記譜法) を選択する)
54 @cindex notation font size (記譜フォント サイズ)
55 @cindex note heads (符頭)
56
57 @funindex fontSize
58 @funindex font-size
59 @funindex magstep
60 @funindex \huge
61 @funindex \large
62 @funindex \normalsize
63 @funindex \small
64 @funindex \tiny
65 @funindex \teeny
66 @funindex huge
67 @funindex large
68 @funindex normalsize
69 @funindex small
70 @funindex tiny
71 @funindex teeny
72
73 記譜要素のフォント サイズを変更することができます。@c
74 これは連桁やスラーなどの可変シンボルのサイズは変更しません。
75
76 @warning{テキストのフォント サイズを変更する方法については
77 @ref{Selecting font and font size} を参照してください。}
78
79 @lilypond[verbatim,quote,relative=2]
80 \huge
81 c4.-> d8---3
82 \large
83 c4.-> d8---3
84 \normalsize
85 c4.-> d8---3
86 \small
87 c4.-> d8---3
88 \tiny
89 c4.-> d8---3
90 \teeny
91 c4.-> d8---3
92 @end lilypond
93
94 内部的には、これは @code{fontSize} プロパティを設定します。@c
95 この設定により @code{font-size} プロパティが@c
96 すべてのレイアウト オブジェクトにセットされます。@c
97 @code{font-size} の値は、カレントの譜の高さでの標準フォント サイズからの@c
98 相対値を表している数字です。@c
99 1 段階上がる毎にフォント サイズは約 12% 増加します。@c
100 6 段階でちょうど 2 倍になります。@c
101 Scheme 関数 @code{magstep} は @code{font-size} 数をスケーリング ファクタに@c
102 変換します。@c
103 @code{font-size} プロパティを直接設定することも可能です。@c
104 そうした場合、特定のレイアウト オブジェクトだけが影響を受けます。
105
106 @lilypond[verbatim,quote,relative=2]
107 \set fontSize = #3
108 c4.-> d8---3
109 \override NoteHead.font-size = #-4
110 c4.-> d8---3
111 \override Script.font-size = #2
112 c4.-> d8---3
113 \override Stem.font-size = #-5
114 c4.-> d8---3
115 @end lilypond
116
117 @cindex standard font size (notation) (標準フォント サイズ (記譜法))
118 @cindex font size (notation), standard (標準フォント サイズ (記譜法))
119
120 @funindex font-interface
121 @funindex font-size
122
123 フォント サイズの変更は、ひな形のサイズが望みのサイズに最も近くなるよう
124 (一定の割合で) 増減することによって、達成されます@c
125 標準フォント サイズ (@w{@code{font-size = #0}} のフォント サイズ) は@c
126 標準の譜の高さに基づきます。@c
127 20pt の譜では、11pt のフォントが選択されます。
128
129 @code{font-size} プロパティはフォントを使用するレイアウト オブジェクトだけに@c
130 セットすることができます@c
131 そのようなオブジェクトは @code{font-interface} レイアウト インタフェイスを@c
132 サポートします。
133
134
135 @predefined
136 @code{\teeny},
137 @code{\tiny},
138 @code{\small},
139 @code{\normalsize},
140 @code{\large},
141 @code{\huge}
142 @endpredefined
143
144 @seealso
145 コード断片集:
146 @rlsr{Editorial annotations}
147
148 内部リファレンス:
149 @rinternals{font-interface}
150
151
152 @node 運指の指示
153 @unnumberedsubsubsec 運指の指示
154 @translationof Fingering instructions
155
156 @cindex fingering (運指法)
157 @cindex finger change (指を変える)
158
159 @funindex \finger
160
161 運指の指示は @var{音符}-@var{数字} を用いることで挿入することができます:
162
163 @lilypond[verbatim,quote,relative=2]
164 c4-1 d-2 f-4 e-3
165 @end lilypond
166
167 指の変更のためにマークアップ テキストや文字列が使用されることもあります。
168
169 @lilypond[verbatim,quote]
170 \relative { c''4-1 d-2 f-4 e-3 }
171 @end lilypond
172
173 指の入れ替えのためにマークアップ テキストを使うこともできます。
174
175 @lilypond[verbatim,quote]
176 \relative {
177   c''4-1 d-2 f\finger \markup \tied-lyric #"4~3" c\finger "2 - 3"
178 }
179 @end lilypond
180
181 @cindex thumb-script (サム-スクリプト)
182
183 @funindex \thumb
184
185 ある音符を親指で演奏するよう指示するために、@c
186 サム-スクリプト (thumb-script) を付け加えることができます
187 (例えば、チェロ音楽で)。
188
189 @lilypond[verbatim,quote]
190 \relative { <a'_\thumb a'-3>2 <b_\thumb b'-3> }
191 @end lilypond
192
193 @cindex fingering chords (和音の運指法)
194 @cindex fingering instructions for chords (和音の運指指示)
195 @cindex chords, fingering (和音の運指法)
196
197 和音の個々の音符の後に運指を付け加えることによって、@c
198 和音に対する運指法を付け加えることができます。
199
200 @lilypond[verbatim,quote]
201 \relative {
202   <c''-1 e-2 g-3 b-5>2 <d-1 f-2 a-3 c-5>
203 }
204 @end lilypond
205
206 運指指示の配置を手動で譜の上または下にすることができます。@c
207 @ref{Direction and placement} を参照してください。
208
209 @snippets
210
211 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
212 {controlling-the-placement-of-chord-fingerings.ly}
213
214 @lilypondfile[verbatim,quote,texidoc,doctitle]
215 {allowing-fingerings-to-be-printed-inside-the-staff.ly}
216
217 @lilypondfile[verbatim,quote,texidoc,doctitle]
218 {avoiding-collisions-with-chord-fingerings.ly}
219
220
221 @seealso
222 記譜法リファレンス:
223 @ref{Direction and placement}
224
225 コード断片集:
226 @rlsr{Editorial annotations}
227
228 内部リファレンス:
229 @rinternals{FingeringEvent},
230 @rinternals{fingering-event},
231 @rinternals{Fingering_engraver},
232 @rinternals{New_fingering_engraver},
233 @rinternals{Fingering}
234
235
236 @node 隠された音符
237 @unnumberedsubsubsec 隠された音符
238 @translationof Hidden notes
239
240 @cindex hidden notes
241 @cindex invisible notes
242 @cindex transparent notes
243 @cindex notes, hidden
244 @cindex notes, invisible
245 @cindex notes, transparent
246
247 @funindex \hideNotes
248 @funindex \unHideNotes
249
250 @c 未訳
251 隠された (または不可視、透明の) 音符は、preparing theory や作曲の演習の際に@c
252 有用です。
253
254 @lilypond[verbatim,quote]
255 \relative {
256   c''4 d
257   \hideNotes
258   e4 f
259   \unHideNotes
260   g a
261   \hideNotes
262   b
263   \unHideNotes
264   c
265 }
266 @end lilypond
267
268 符頭、符幹、旗、それに休符は不可視です。@c
269 連桁は、隠された音符から始まる場合は、不可視です。
270 不可視の音符に取り付けられたオブジェクトは可視のままです。
271
272 @lilypond[verbatim,quote]
273 \relative c'' {
274   e8(\p f g a)--
275   \hideNotes
276   e8(\p f g a)--
277 }
278 @end lilypond
279
280
281 @predefined
282 @code{\hideNotes},
283 @code{\unHideNotes}
284 @endpredefined
285
286 @seealso
287 学習マニュアル:
288 @rlearning{オブジェクトの可視性と色}
289
290 Notation Reference:
291 @ref{不可視の休符},
292 @ref{Visibility of objects},
293 @ref{Hiding staves}
294
295 コード断片集:
296 @rlsr{Editorial annotations}
297
298 内部リファレンス:
299 @rinternals{Note_spacing_engraver},
300 @rinternals{NoteSpacing}
301
302
303 @node オブジェクトに色を付ける
304 @unnumberedsubsubsec オブジェクトに色を付ける
305 @translationof Coloring objects
306
307 @cindex colored objects (色付きのオブジェクト)
308 @cindex objects, colored (色付きのオブジェクト)
309 @cindex colors (色)
310 @cindex coloring objects (オブジェクトに色を付ける)
311 @cindex colored notes (色付きの音符)
312 @cindex coloring notes (音符に色を付ける)
313 @cindex notes, colored (色付きの音符)
314 @cindex x11 color (X11 カラー)
315 @cindex x11-color
316 @cindex with-color
317
318 @funindex color
319 @funindex \with-color
320 @funindex x11-color
321
322 個々のオブジェクトに色を割り振ることができます。@c
323 有効なカラー名は @ref{List of colors} でリストアップされています。
324
325 @lilypond[verbatim,quote,fragment]
326 \override NoteHead.color = #red
327 c''4 c''
328 \override NoteHead.color = #(x11-color 'LimeGreen)
329 d''
330 \override Stem.color = #blue
331 e''
332 @end lilypond
333
334
335 Scheme 関数 @code{x11-color} を用いることによって、@c
336 X11 のために定義された色の全範囲にアクセスすることができます。@c
337 この関数は引数を 1 つとります。@c
338 この引数は @code{'@var{FooBar}} という形式のシンボルであったり、@c
339 @code{"@var{FooBar}"} という形式の文字列であったりします。@c
340 最初の形式はより素早く記述できて、より効率的です。@c
341 しかしながら、2 番目の形式を使うと複数単語形式の X11 カラーに@c
342 アクセスすることができます。
343
344 @code{x11-color} がパラメータとして意味をなさない場合、@c
345 その色はデフォルトの黒になります。
346
347 @c KEEP LY
348 @lilypond[verbatim,quote]
349 \relative c'' {
350   \override Staff.StaffSymbol.color = #(x11-color 'SlateBlue2)
351   \set Staff.instrumentName = \markup {
352     \with-color #(x11-color 'navy) "Clarinet"
353   }
354
355   gis8 a
356   \override Beam.color = #(x11-color "medium turquoise")
357   gis a
358   \override Accidental.color = #(x11-color 'DarkRed)
359   gis a
360   \override NoteHead.color = #(x11-color "LimeGreen")
361   gis a
362   % 以下は意図的に意味をなさない色を指定しています。符幹が黒のままであることに注意してください
363   \override Stem.color = #(x11-color 'Boggle)
364   b2 cis
365 }
366 @end lilypond
367
368 @cindex rgb-color
369 @cindex color, rgb (RGB カラー)
370 @cindex rgb color (RGB カラー)
371
372 @funindex rgb-color
373
374 Scheme 関数 @code{rgb-color} を用いることによって、@c
375 厳密な RGB カラーを指定することができます。
376
377 @lilypond[verbatim,quote]
378 \relative c'' {
379   \override Staff.StaffSymbol.color = #(x11-color 'SlateBlue2)
380   \set Staff.instrumentName = \markup {
381     \with-color #(x11-color 'navy) "Clarinet"
382   }
383
384   \override Stem.color = #(rgb-color 0 0 0)
385   gis8 a
386   \override Stem.color = #(rgb-color 1 1 1)
387   gis8 a
388   \override Stem.color = #(rgb-color 0 0 0.5)
389   gis4 a
390 }
391 @end lilypond
392
393 @seealso
394 記譜法リファレンス:
395 @ref{List of colors},
396 @ref{The tweak command}
397
398 コード断片集:
399 @rlsr{Editorial annotations}
400
401 @cindex x11 color (X11 カラー)
402 @cindex colored notes in chords (和音の中にある色付きの音符)
403 @cindex notes, colored in chords (和音の中にある色付きの音符)
404 @cindex color in chords (和音の中で色を付ける)
405
406 @funindex x11-color
407
408 @knownissues
409 X11 カラーは必ずしも同様の名前を持つノーマル カラーと@c
410 まったく同じとなるわけではありません。
411
412 すべての X11 カラーが Web ブラウザで見分けられるわけではありません。@c
413 つまり、ある Web ブラウザは @code{LineGreen} と @code{ForestGreen} を@c
414 同じ色で表示するかもしれません。@c
415 Web 向けでは、ノーマル カラーを使用することを推奨します
416 (つまり、@code{blue}, @code{green}, @code{red})。
417
418 和音の中にある音符には @code{\override} で色を付けることはできません。@c
419 @code{\override} の代わりに @code{\tweak} を使用してください
420 -- @ref{The tweak command} を参照してください。
421
422
423 @node 括弧
424 @unnumberedsubsubsec 括弧
425 @translationof Parentheses
426
427 @c 保留: ghost notes
428 @cindex ghost notes (ゴースト音符)
429 @cindex notes, ghost (ゴースト音符)
430 @cindex notes, parenthesized (括弧で囲まれた音符)
431 @cindex parentheses (括弧)
432 @cindex brackets (囲み)
433
434 @funindex \parenthesize
435
436 音楽イベントの前に @code{\parenthesize} を置くことによって、@c
437 そのオブジェクトに括弧を付けることができます。@c
438 和音の前に @code{\parenthesize} を置くと、@c
439 和音の音符それぞれに括弧が付けられます。@c
440 和音内部の音符に個別に括弧を付けることもできます。
441
442 @lilypond[verbatim,quote]
443 \relative {
444   c''2 \parenthesize d
445   c2 \parenthesize <c e g>
446   c2 <c \parenthesize e g>
447 }
448 @end lilypond
449
450 音符ではないオブジェクトにも括弧を付けることができます。@c
451 アーティキュレーションに対して括弧をつける場合、@c
452 @code{\parenthesize} コマンドの前にハイフンが必要です。
453
454 @lilypond[verbatim,quote]
455 \relative {
456   c''2-\parenthesize -. d
457   c2 \parenthesize r
458 }
459 @end lilypond
460
461 @seealso
462 コード断片集:
463 @rlsr{Editorial annotations}
464
465 内部リファレンス:
466 @rinternals{Parenthesis_engraver},
467 @rinternals{ParenthesesItem},
468 @rinternals{parentheses-interface}
469
470 @knownissues
471 和音に括弧を付けると、和音全体に単一の大きな括弧が付くのではなく、@c
472 それぞれの音符に個別に括弧が付きます。
473
474
475 @node 符幹
476 @unnumberedsubsubsec 符幹
477 @translationof Stems
478
479 @cindex stem (符幹)
480 @cindex stem, invisible (不可視の符幹)
481 @cindex invisible stem (不可視の符幹)
482
483 @funindex \stemUp
484 @funindex \stemDown
485 @funindex \stemNeutral
486 @cindex stem, direction (符幹の向き)
487 @cindex stem, up (符幹を上向きにする)
488 @cindex stem, down (符幹を下向きにする)
489 @cindex stem, neutral (符幹の向きを元に戻す)
490
491 音符が見つかった場合はいつでも @code{Stem} オブジェクトが@c
492 自動的に作成されます。@c
493 全音符や休符の場合でも @code{Stem} オブジェクトが作成されますが、@c
494 不可視になります。
495
496 符幹の向きを手動で上または下にすることができます
497 -- @ref{Direction and placement} を参照してください。
498
499
500 @predefined
501 @code{\stemUp},
502 @code{\stemDown},
503 @code{\stemNeutral}
504 @endpredefined
505
506
507 @snippets
508
509 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
510 {default-direction-of-stems-on-the-center-line-of-the-staff.ly}
511
512 @seealso
513 記譜法リファレンス:
514 @ref{Direction and placement}
515
516 コード断片集:
517 @rlsr{Editorial annotations}
518
519 内部リファレンス:
520 @rinternals{Stem_engraver},
521 @rinternals{Stem},
522 @rinternals{stem-interface}
523
524
525 @node 譜の外部
526 @subsection 譜の外部
527 @translationof Outside the staff
528
529 このセクションでは、@c
530 譜の外側から譜の中にある要素を強調するための方法について説明します。
531
532 @menu
533 * バルーン ヘルプ::
534 * グリッド ライン::
535 * 分析の囲み::
536 @end menu
537
538 @node バルーン ヘルプ
539 @unnumberedsubsubsec バルーン ヘルプ
540 @translationof Balloon help
541
542 @cindex balloon (バルーン)
543 @cindex notation, explaining (記譜法を説明する)
544 @cindex balloon help (バルーン ヘルプ)
545 @cindex help, balloon (バルーン ヘルプ)
546
547 @funindex \balloonGrobText
548 @funindex \balloonText
549 @funindex Balloon_engraver
550 @funindex balloonGrobText
551 @funindex balloonText
552 @funindex \balloonLengthOn
553 @funindex \balloonLengthOff
554
555 記譜要素に四角いバルーンで印を付けて、テキストを付け加えることができます。@c
556 この機能の主目的は記譜法を説明することです。
557
558 @lilypond[verbatim,quote]
559 \new Voice \with { \consists "Balloon_engraver" }
560 \relative c'' {
561   \balloonGrobText #'Stem #'(3 . 4) \markup { "I'm a Stem" }
562   a8
563   \balloonGrobText #'Rest #'(-4 . -4) \markup { "I'm a rest" }
564   r
565   <c, g'-\balloonText #'(-2 . -2) \markup { "I'm a note head" } c>2.
566 }
567 @end lilypond
568
569
570 上の例には 2 つの音楽関数が使われています
571 -- @code{balloonGrobText} と @code{balloonText} です。@c
572 前者は @w{@code{\once \override}} のように使用され、@c
573 任意のグラフィカル オブジェクトにテキストを付加します。@c
574 後者はたいてい和音の中で @code{\tweak} のように使用され、@c
575 個々の音符にテキストを付加します。
576
577 通常、バルーン ヘルプのテキストは音符の間隔に影響を与えますが、@c
578 影響を与えないよう変更することもできます:
579
580 Balloon text normally influences note spacing, but this can be
581 altered:
582
583 @lilypond[verbatim,quote,relative=2]
584 \new Voice \with { \consists "Balloon_engraver" }
585 {
586   \balloonLengthOff
587   \balloonGrobText #'Stem #'(3 . 4) \markup { "I'm a Stem" }
588   a8
589   \balloonGrobText #'Rest #'(-4 . -4) \markup { "I'm a rest" }
590   r
591   \balloonLengthOn
592   <c, g'-\balloonText #'(-2 . -2) \markup { "I'm a note head" } c>2.
593 }
594 @end lilypond
595
596 @predefined
597 @code{\balloonLengthOn},
598 @code{\balloonLengthOff}
599 @endpredefined
600
601 @seealso
602 コード断片集:
603 @rlsr{Editorial annotations}
604
605 内部リファレンス:
606 @rinternals{Balloon_engraver},
607 @rinternals{BalloonTextItem},
608 @rinternals{balloon-interface}
609
610
611 @node グリッド ライン
612 @unnumberedsubsubsec グリッド ライン
613 @translationof Grid lines
614
615 @cindex grid lines (グリッド ライン)
616 @cindex lines, grid (グリッド ライン)
617 @cindex vertical lines between staves (譜の間の垂直な線)
618 @cindex lines, vertical between staves (譜の間の垂直な線)
619
620 @funindex Grid_point_engraver
621 @funindex Grid_line_span_engraver
622 @funindex gridInterval
623
624 音符に同期して、譜の間に垂直な線を描くことができます。
625
626 線の終点を作成するために @code{Grid_point_engraver} を用いる必要があります。@c
627 一方、実際に線を描くために @code{Grid_line_span_engraver} を@c
628 用いる必要があります。@c
629 デフォルトでは、グリッド ラインは各符頭の左端に揃えられます。@c
630 グリッド ラインは上の譜の中央線から下の譜の中央線まで引かれます。@c
631 @code{gridInterval} でグリッド ライン間の演奏時間を指定する必要があります。
632
633 @lilypond[verbatim,quote]
634 \layout {
635   \context {
636     \Staff
637     \consists "Grid_point_engraver"
638     gridInterval = #(ly:make-moment 1/4)
639   }
640   \context {
641     \Score
642     \consists "Grid_line_span_engraver"
643   }
644 }
645
646 \score {
647   \new ChoirStaff <<
648     \new Staff \relative {
649       \stemUp
650       c''4. d8 e8 f g4
651     }
652     \new Staff \relative {
653       \clef bass
654       \stemDown
655       c4 g' f e
656     }
657   >>
658 }
659 @end lilypond
660
661 @snippets
662
663 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
664 {grid-lines--changing-their-appearance.ly}
665
666 @seealso
667 コード断片集:
668 @rlsr{Editorial annotations}
669
670 内部リファレンス:
671 @rinternals{Grid_line_span_engraver},
672 @rinternals{Grid_point_engraver},
673 @rinternals{GridLine},
674 @rinternals{GridPoint},
675 @rinternals{grid-line-interface},
676 @rinternals{grid-point-interface}.
677
678
679 @node 分析の囲み
680 @unnumberedsubsubsec 分析の囲み
681 @translationof Analysis brackets
682
683 @cindex brackets (囲み、角括弧)
684 @cindex bracket, phrasing (プレージングの囲み)
685 @cindex phrasing bracket (プレージングの囲み)
686 @cindex musicological analysis (音楽学的分析)
687 @cindex analysis, musicologica (音楽学的分析)l
688 @cindex note grouping bracket (音符グループ化囲み)
689 @cindex horizontal bracket (水平の囲み)
690 @cindex bracket, horizontal (水平の囲み)
691
692 @funindex Horizontal_bracket_engraver
693 @funindex \startGroup
694 @funindex \stopGroup
695
696 音楽分析では、囲みを使って楽曲の構造を示します。@c
697 シンプルな水平な囲みがサポートされています。
698
699 @lilypond[verbatim,quote]
700 \layout {
701   \context {
702     \Voice
703     \consists "Horizontal_bracket_engraver"
704   }
705 }
706 \relative {
707   c''2\startGroup
708   d\stopGroup
709 }
710 @end lilypond
711
712 Analysis brackets may be nested.
713
714 @lilypond[verbatim,quote]
715 \layout {
716   \context {
717     \Voice
718     \consists "Horizontal_bracket_engraver"
719   }
720 }
721 \relative {
722   c''4\startGroup\startGroup
723   d4\stopGroup
724   e4\startGroup
725   d4\stopGroup\stopGroup
726 }
727 @end lilypond
728
729 @seealso
730 コード断片集:
731 @rlsr{Editorial annotations}
732
733 内部リファレンス:
734 @rinternals{Horizontal_bracket_engraver},
735 @rinternals{HorizontalBracket},
736 @rinternals{horizontal-bracket-interface},
737 @rinternals{Staff}