]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/ja/notation/pitches.itely
Issue 4894: Remove unescaped @funindex entries
[lilypond.git] / Documentation / ja / notation / pitches.itely
index 5e64e0153dbdd75e637fee2fdaf8486d89d2babf..b5e85815e199554c3883aa8b62638ae87c823319 100644 (file)
@@ -6,7 +6,7 @@
     version that you are working on.  See TRANSLATION for details.
 @end ignore
 
-@c \version "2.19.2"
+@c \version "2.19.22"
 
 @c Translators: Yoshiki Sawada
 @c Translation status: post-GDP
 @unnumberedsubsubsec 相対オクターブ入力
 @translationof Relative octave entry
 
+@c 本項目のみ先に翻訳 2015-12-31
+@c ドキュメント全体的に相対モードの開始ピッチ指定方法が変更されており、
+@c 従前のままの内容だと混乱をきたす可能性があるため。
+
 @cindex relative (相対)
 @cindex relative octave entry (相対オクターブ入力)
 @cindex octave entry, relative (相対オクターブ入力)
 @cindex relative octave specification (相対オクターブ指定)
 @cindex ocatve specification, relative (相対オクターブ指定)
 
-@funindex relative
 @funindex \relative
 
-オクターブが絶対モードで指定されている場合、@c
-ピッチを間違ったオクターブに置くことは容易に起こりえます。@c
-相対オクターブ モードはそのようなエラーを減らします。@c
-なぜなら、相対オクターブ モードでは、たいていの場合、@c
-オクターブを指定する必要が無いからです。@c
-さらに、絶対モードでは 1 つのミスを見つけることが@c
-困難であるかもしれないのに対し、@c
-相対モードでは 1 つのミスが楽曲の残りの部分を 1 オクターブずらします。
+絶対オクターブ入力は、一つ一つの音符のオクターブを指定する必要があります。@c
+相対オクターブ入力は、対照的に、@c
+すぐ前の音符との関係で各オクターブを指定します。@c
+1 つの音符のオクターブを変更すると、続く音符のすべてに影響します。
+
+相対音符モードは @code{\relative} コマンドを使って@c
+明示的に入力する必要があります。
 
 @example
 \relative @var{startpitch} @var{musicexpr}
 
 @item
 最初の音符のピッチは @code{@var{startpitch}} と相対関係で決定されます。@c
-@var{startpitch} は絶対オクターブ モードで指定され、@c
-@code{c} のオクターブにしておくことを推奨します。
+@var{startpitch} は絶対オクターブ モードで指定されます。@c
+どの選択肢がわかりやすですか?
+
+@table @asis
+@item @code{c} のオクターブ
+@code{c'} でミドル C を指定することは極めて基本的なため、@c
+@code{c} のオクターブは、どちらかといえば素直です。@c
+あなたの音楽が @code{c'''} より高い @code{gis} で始まる場合、@c
+@code{\relative c''' @{ gis' @dots{} @}} のように書くことができます。
+
+@item 内部の最初の音符のオクターブ
+@code{\relative gis''' @{ gis @dots{} @}} と書くことで、@c
+内部の最初の音符の絶対ピッチを簡単に決めることができます。
+
+@item 明示的な開始ピッチ無し
+@code{\relative @{ gis''' @dots{} @}} の形式は@c
+前の選択肢のコンパクト版として機能します。@c
+内部の最初の音符は絶対ピッチで書かれます。@c
+(これは基準ピッチとして @code{f} を選択したのと同じです。)
+@end table
+
+このドキュメントは通常、最後の選択肢を使用します。
 
 @end itemize
 
 ここで、実際に相対モードの例を挙げます:
 
 @lilypond[verbatim,quote]
-\relative {
+\relative {
   \clef bass
   c d e f
   g a b c
 オクターブ変更記号は 4 度よりも大きな音程に対して使用されます:
 
 @lilypond[verbatim,quote]
-\relative c {
-  \clef bass
-  c d e f
-  g a b c
-  d e f g
+\relative {
+  c'' g c f,
+  c' a, e'' c
 }
 @end lilypond
 
 大きな音程に広がる可能性があります:
 
 @lilypond[verbatim,quote]
-\relative {
+\relative {
   c f b e
   a d g c
 }
 @end lilypond
 
 @code{\relative} ブロックがネストされている場合、@c
-最も内側の @code{\relative} ブロックが適用されます。
+最も内側の @code{\relative} ブロックが、外側の @code{\relative}
+とは独立した自身の参照ピッチで開始します。
 
 @lilypond[verbatim,quote]
-\relative c' {
-  c d e f
-  \relative c'' {
-    c d e f
+\relative {
+  c' d e f
+  \relative {
+    c'' d e f
   }
 }
 @end lilypond
 絶対モードになります。
 
 @lilypond[verbatim,quote]
-\relative c' {
-  d e
+\relative {
+  d' e
   \transpose f g {
     d e
-    \relative c' {
-      d e
+    \relative {
+      d' e
     }
   }
 }
 次の例を、@code{c} の音符に気を付けて、注意深く検証してください。
 
 @lilypond[verbatim,quote]
-\relative c' {
-  c
+\relative {
+  c'
   <c e g>
   <c' e g'>
   <c, e, g''>
 いかなる変更にも影響を受けません。@c
 そのため、B の後の E ダブル シャープは B よりも上に配置され、@c
 B の後の F ダブル フラットは B よりも下に配置されます。@c
-言い換えると、4 度の 2 重増音の音程は 5 度の 2 重減音の音程よりも小さい
+言い換えると、重増 4 度は重減 5 度よりも小さい
 -- それぞれの音程に含まれる半音の数に関係無く -- と見なされます。
 
 @lilypond[verbatim,quote]
-\relative c'' {
-  c2 fis
+\relative {
+  c''2 fis
   c2 ges
   b2 eisis
   b2 feses
 }
 @end lilypond
 
-これらの規則から導き出される結論の 1 つは、@c
-@code{@w{\relative f}} ブロックの中の最初の音符は絶対ピッチ モードで記述された@c
-音符と全く同様に解釈されるということです。
 
 @seealso
 音楽用語集:
@@ -283,18 +301,8 @@ B の後の F ダブル フラットは B よりも下に配置されます。@c
 @cindex transposition and relative octave entry (移調と相対オクターブ入力)
 
 @funindex \transpose
-@funindex transpose
 @funindex \chordmode
-@funindex chordmode
 @funindex \relative
-@funindex relative
-
-@c DEPRECATED
-@code{\relative} に対して @code{@var{startpitch}} が指定されていない場合、@c
-@code{c'} であると見なされます。@c
-しかしながら、これは使用を推奨されなくなったオプションであり、@c
-将来のバージョンでは無くなるかもしれないので、@c
-@code{@var{startpitch}} を指定しないことはお勧めできません。
 
 
 @node 臨時記号
@@ -336,16 +344,16 @@ LilyPond では、音符名は未加工の入力です
 臨時記号に他の名前を使うには、@c
 @ref{Note names in other languages} を参照してください。
 
-@lilypond[verbatim,quote,relative=2]
-ais1 aes aisis aeses
+@lilypond[verbatim,quote,fragment]
+\relative c'' { ais1 aes aisis aeses }
 @end lilypond
 
 ナチュラルは臨時記号や調号の効果をキャンセルします。@c
 しかしながら、ナチュラルは接尾辞として音符名構文にエンコードされてはいません。@c
 そのため、ナチュラルのピッチは単に音符名で入力されます:
 
-@lilypond[verbatim,quote,relative=2]
-a4 aes a2
+@lilypond[verbatim,quote,fragment]
+\relative c'' { a4 aes a2 }
 @end lilypond
 
 @cindex quarter tones (4 分音)
@@ -355,8 +363,8 @@ a4 aes a2
 4 分音が付け加えられるかもしれません。@c
 以下の一連の C は左から順にピッチが増えていっています:
 
-@lilypond[verbatim,quote,relative=2]
-ceseh1 ces ceh c cih cis cisih
+@lilypond[verbatim,quote,fragment]
+\relative c'' { ceseh1 ces ceh c cih cis cisih }
 @end lilypond
 
 
@@ -379,8 +387,8 @@ ceseh1 ces ceh c cih cis cisih
 譜刻することができます。@c
 これら追加の臨時記号を使ってナチュラル記号を作り出すこともできます。
 
-@lilypond[verbatim,quote,relative=2]
-cis cis cis! cis? c c c! c?
+@lilypond[verbatim,quote,fragment]
+\relative c'' { cis cis cis! cis? c c c! c? }
 @end lilypond
 
 @cindex accidental on tied note (タイで結ばれた音符への臨時記号)
@@ -389,10 +397,12 @@ cis cis cis! cis? c c c! c?
 タイで結ばれた音符に付ける臨時記号は@c
 新しいシステム (訳者: 譜 1 行分のこと) の開始点でのみ譜刻されます:
 
-@lilypond[verbatim,quote,relative=2]
-cis1 ~ 1 ~
-\break
-cis
+@lilypond[verbatim,quote,fragment,ragged-right]
+\relative c'' {
+  cis1~ 1~
+  \break
+  cis
+}
 @end lilypond
 
 
@@ -454,8 +464,8 @@ LilyPond の記号はいかなる標準にも準拠しません。
 @lilypond[quote,verbatim]
 \language "italiano"
 
-\relative do' {
-  do re mi sib
+\relative {
+  do' re mi sib
 }
 @end lilypond
 
@@ -530,8 +540,8 @@ LilyPond ではどちらの形式も認められます。@c
 @code{eeses}@tie{}/@tie{}@code{eses} にも適用されます。@c
 他の言語ファイルでは短縮名だけが定義されている場合があります。
 
-@lilypond[verbatim,quote,relative=2]
-a2 as e es a ases e eses
+@lilypond[verbatim,quote,fragment]
+\relative c'' { a2 as e es a ases e eses }
 @end lilypond
 
 
@@ -617,7 +627,6 @@ a2 as e es a ases e eses
 
 @funindex =
 @funindex \octaveCheck
-@funindex octaveCheck
 @funindex controlpitch
 
 相対モードでは、オクターブ変更記号を付け忘れることが容易に起こり得ます。@c
@@ -632,8 +641,8 @@ a2 as e es a ases e eses
 警告を発し (そしてピッチを変更し) ます。
 
 @lilypond[verbatim,quote]
-\relative c'' {
-  c2 d='4 d
+\relative {
+  c''2 d='4 d
   e2 f
 }
 @end lilypond
@@ -650,8 +659,8 @@ a2 as e es a ases e eses
 その後に続く音符は @code{@var{controlpitch}} から算出されます。
 
 @lilypond[verbatim,quote]
-\relative c'' {
-  c2 d
+\relative {
+  c''2 d
   \octaveCheck c'
   e2 f
 }
@@ -662,8 +671,8 @@ a2 as e es a ases e eses
 2 番目のチェックは失敗していません。
 
 @lilypond[verbatim,quote]
-\relative c'' {
-  c4 f g f
+\relative {
+  c''4 f g f
 
   c4
   \octaveCheck c'
@@ -696,7 +705,6 @@ a2 as e es a ases e eses
 @cindex notes, transposition of (音符の移調)
 
 @funindex \transpose
-@funindex transpose
 
 音楽表記は @code{\transpose} で移調させることができます。@c
 構文は以下の通りです:
@@ -723,9 +731,9 @@ D-メジャーの調で書かれた楽曲を思い浮かべてください。@c
 
 @lilypond[verbatim,quote]
 \transpose d e {
-  \relative c' {
+  \relative {
     \key d \major
-    d4 fis a d
+    d'4 fis a d
   }
 }
 @end lilypond
@@ -740,9 +748,9 @@ A のクラリネットで演奏する
 
 @lilypond[verbatim,quote]
 \transpose a c' {
-  \relative c' {
+  \relative {
     \key c \major
-    c4 d e g
+    c'4 d e g
   }
 }
 @end lilypond
@@ -759,7 +767,7 @@ A のクラリネットで演奏する
 2 番目の移調はフラットを譜刻し、音符の五線譜上での位置は上に上がります。
 
 @lilypond[verbatim,quote]
-music = \relative c' { c d e f }
+music = \relative { c' d e f }
 \new Staff {
   \transpose c cis { \music }
   \transpose c des { \music }
@@ -815,11 +823,8 @@ musicInBflat = @{ e4 @dots{} @}
 @rinternals{TransposedMusic}
 
 @funindex \transpose
-@funindex transpose
 @funindex \chordmode
-@funindex chordmode
 @funindex \relative
-@funindex relative
 
 @knownissues
 相対変換コマンドはその引数の中にある @code{\transpose}, @code{\chordmode},
@@ -851,7 +856,7 @@ The @code{@var{musicexpr}} の音程は @code{@var{around-pitch}} を中心に@c
 マッピングされるように移調されます。
 
 @lilypond[verbatim,quote]
-music = \relative c' { c d e f }
+music = \relative { c' d e f }
 \new Staff {
   \music
   \inversion d' d' \music
@@ -878,12 +883,11 @@ music = \relative c' { c d e f }
 @cindex transformation, retrograde (逆行変換)
 @cindex operation, retrograde (逆行操作)
 @funindex \retrograde
-@funindex retrograde
 
 音楽表記を後ろから前に演奏する逆行を作り出すことができます:
 
 @lilypond[verbatim,quote]
-music = \relative c' { c8. ees16( fis8. a16 b8.) gis16 f8. d16 }
+music = \relative { c'8. ees16( fis8. a16 b8.) gis16 f8. d16 }
 
 \new Staff {
   \music
@@ -925,7 +929,6 @@ music = \relative c' { c8. ees16( fis8. a16 b8.) gis16 f8. d16 }
 @cindex transposition, modal (様式的な移調)
 @cindex operation, transposition (移調操作)
 @funindex \modalTranspose
-@funindex modalTranspose
 
 以下により、与えられた音階でモチーフを移調させることができます:
 
@@ -937,8 +940,8 @@ music = \relative c' { c8. ees16( fis8. a16 b8.) gis16 f8. d16 }
 間の音程の度数の分だけシフトされます:
 
 @lilypond[verbatim,quote]
-diatonicScale = \relative c' { c d e f g a b }
-motif = \relative c' { c8 d e f g a b c }
+diatonicScale = \relative { c' d e f g a b }
+motif = \relative { c'8 d e f g a b c }
 
 \new Staff {
   \motif
@@ -950,8 +953,8 @@ motif = \relative c' { c8 d e f g a b c }
 上昇する音階の長さは任意であり、指定する音程も任意です:
 
 @lilypond[verbatim,quote]
-pentatonicScale = \relative c' { ges aes bes des ees }
-motif = \relative c' { ees8 des ges,4 <ges' bes,> <ges bes,> }
+pentatonicScale = \relative { ges aes bes des ees }
+motif = \relative { ees'8 des ges,4 <ges' bes,> <ges bes,> }
 
 \new Staff {
   \motif
@@ -964,8 +967,8 @@ motif = \relative c' { ees8 des ges,4 <ges' bes,> <ges bes,> }
 できます:
 
 @lilypond[verbatim,quote]
-chromaticScale = \relative c' { c cis d dis e f fis g gis a ais b }
-motif = \relative c' { c8 d e f g a b c }
+chromaticScale = \relative { c' cis d dis e f fis g gis a ais b }
+motif = \relative { c'8 d e f g a b c }
 
 \new Staff {
   \motif
@@ -980,7 +983,6 @@ motif = \relative c' { c8 d e f g a b c }
 @cindex inversion, modal (様式的な反転)
 @cindex operation, modal inversion (様式的な反転操作)
 @funindex \modalInversion
-@funindex modalInversion
 
 モチーフを与えられた音階に従って与えられた旋回点 (音符) で反転させて、
 移調させることを 1 つの操作でできます:
@@ -1001,8 +1003,8 @@ motif = \relative c' { c8 d e f g a b c }
 @var{to-pitch} で同じ値を使用します:
 
 @lilypond[verbatim,quote]
-octatonicScale = \relative c' { ees f fis gis a b c d }
-motif = \relative c' { c8. ees16 fis8. a16 b8. gis16 f8. d16 }
+octatonicScale = \relative { ees' f fis gis a b c d }
+motif = \relative { c'8. ees16 fis8. a16 b8. gis16 f8. d16 }
 
 \new Staff {
   \motif
@@ -1015,8 +1017,8 @@ motif = \relative c' { c8. ees16 fis8. a16 b8. gis16 f8. d16 }
 指定された 2 つの音符が旋回点を囲んでいると解釈することができます:
 
 @lilypond[verbatim,quote]
-scale = \relative c' { c g' }
-motive = \relative c' { c c g' c, }
+scale = \relative { c' g' }
+motive = \relative { c' c g' c, }
 
 \new Staff {
   \motive
@@ -1027,8 +1029,8 @@ motive = \relative c' { c c g' c, }
 反転と逆行の操作を組み合わせると逆行-反転になります:
 
 @lilypond[verbatim,quote]
-octatonicScale = \relative c' { ees f fis gis a b c d }
-motif = \relative c' { c8. ees16 fis8. a16 b8. gis16 f8. d16 }
+octatonicScale = \relative { ees' f fis gis a b c d }
+motif = \relative { c'8. ees16 fis8. a16 b8. gis16 f8. d16 }
 
 \new Staff {
   \motif
@@ -1096,53 +1098,52 @@ motif = \relative c' { c8. ees16 fis8. a16 b8. gis16 f8. d16 }
 @cindex clef, subbass (低バス音部記号)
 
 @funindex \clef
-@funindex clef
 
 音部記号を変えることができます。@c
 以下のそれぞれの例の中にある音符はすべてミドル C です。@c
 例の中にある音部名をダブル クォートで囲むことができます (必須ではありません)。
 
-@lilypond[verbatim,quote,relative=1]
+@lilypond[verbatim,quote,fragment]
 \clef treble
-c2 c
+c'2 c'
 \clef alto
-c2 c
+c'2 c'
 \clef tenor
-c2 c
+c'2 c'
 \clef bass
-c2 c
+c'2 c'
 @end lilypond
 
 他の音部記号もあります:
 
 @c KEEP LY
-@lilypond[verbatim,quote,relative=1]
+@lilypond[verbatim,quote,fragment]
 \clef french
-c2 c
+c'2 c'
 \clef soprano
-c2 c
+c'2 c'
 \clef mezzosoprano
-c2 c
+c'2 c'
 \clef baritone
-c2 c
+c'2 c'
 
 \break
 
 \clef varbaritone
-c2 c
+c'2 c'
 \clef subbass
-c2 c
+c'2 c'
 \clef percussion
-c2 c
+c'2 c'
 
 \break
 
 \clef G   % treble と同義です
-c2 c
+c'2 c'
 \clef F   % bass と同義です
-c2 c
+c'2 c'
 \clef C   % alto と同義です
-c2 c
+c'2 c'
 @end lilypond
 
 @cindex transposing clefs (音部を移調する)
@@ -1160,29 +1161,29 @@ c2 c
 音部名にアルファベット以外の文字が含まれる場合、@c
 音部名をダブル クォートで囲む必要があります。
 
-@lilypond[verbatim,quote,relative=1]
+@lilypond[verbatim,quote,fragment]
 \clef treble
-c2 c
+c'2 c'
 \clef "treble_8"
-c2 c
+c'2 c'
 \clef "bass^15"
-c2 c
+c'2 c'
 \clef "alto_2"
-c2 c
+c'2 c'
 \clef "G_8"
-c2 c
+c'2 c'
 \clef "F^5"
-c2 c
+c'2 c'
 @end lilypond
 
 数字の引数を括弧や角括弧で囲むことで、オプションのオクターブを@c
 表示させることができます:
 
-@lilypond[verbatim,quote,relative=1]
+@lilypond[verbatim,quote,fragment]
 \clef "treble_(8)"
-c2 c
+c'2 c'
 \clef "bass^[15]"
-c2 c
+c'2 c'
 @end lilypond
 
 ピッチは数字の引数が括弧で囲まれていない場合と同じです。
@@ -1223,13 +1224,13 @@ c2 c
 別の @code{\override} で @var{ClefModifier} グラフィカル オブジェクトに@c
 適用する必要があります。
 
-@lilypond[fragment,quote,relative=1]
+@lilypond[fragment,quote,verbatim]
 \new Staff \with {
   \override ClefModifier.color = #red
   \override Clef.color = #blue
 }
 
-\clef "treble_8" c4
+\clef "treble_8" c'4
 @end lilypond
 
 
@@ -1240,7 +1241,6 @@ c2 c
 @cindex key signature (調号)
 
 @funindex \key
-@funindex key
 
 @c duplicated in Key signature and Accidentals
 @warning{LilyPond を始めたばかりのユーザは@c
@@ -1260,23 +1260,14 @@ LilyPond では、音符名は未加工の入力です。@c
 @end example
 
 @funindex \major
-@funindex major
 @funindex \minor
-@funindex minor
 @funindex \ionian
-@funindex ionian
 @funindex \locrian
-@funindex locrian
 @funindex \aeolian
-@funindex aeolian
 @funindex \mixolydian
-@funindex mixolydian
 @funindex \lydian
-@funindex lydian
 @funindex \phrygian
-@funindex phrygian
 @funindex \dorian
-@funindex dorian
 
 @cindex church modes (チャーチ モード)
 @cindex modes (モード)
@@ -1300,11 +1291,13 @@ LilyPond では、音符名は未加工の入力です。@c
 @code{\ionian}, @code{\dorian}, @code{\phrygian}, @code{\lydian},
 @code{\mixolydian}, @code{\aeolian} それに @code{\locrian} です。
 
-@lilypond[verbatim,quote,relative=2]
-\key g \major
-fis1
-f
-fis
+@lilypond[verbatim,quote,fragment]
+\relative {
+  \key g \major
+  fis''1
+  f
+  fis
+}
 @end lilypond
 
 新たにモードを定義することができます
@@ -1315,8 +1308,8 @@ fis
 freygish = #`((0 . ,NATURAL) (1 . ,FLAT) (2 . ,NATURAL)
     (3 . ,NATURAL) (4 . ,NATURAL) (5 . ,FLAT) (6 . ,FLAT))
 
-\relative c' {
-  \key c\freygish c4 des e f
+\relative {
+  \key c\freygish c'4 des e f
   \bar "||" \key d\freygish d es fis g
 }
 @end lilypond
@@ -1329,14 +1322,14 @@ freygish = #`((0 . ,NATURAL) (1 . ,FLAT) (2 . ,NATURAL)
 1 つの値だけを渡した場合、その譜ポジションで終了するオクターブの範囲@c
 に臨時記号が配置されます。
 
-@lilypond[verbatim, quote,relative=0]
+@lilypond[verbatim, quote,fragment]
 \override Staff.KeySignature.flat-positions = #'((-5 . 5))
 \override Staff.KeyCancellation.flat-positions = #'((-5 . 5))
-\clef bass \key es\major es g bes d
-\clef treble \bar "||" \key es\major es g bes d
+\clef bass \key es \major es g bes d'
+\clef treble \bar "||" \key es \major es' g' bes' d''
 
 \override Staff.KeySignature.sharp-positions = #'(2)
-\bar "||" \key b\major b fis b2
+\bar "||" \key b \major b' fis' b'2
 @end lilypond
 
 @snippets
@@ -1379,22 +1372,23 @@ freygish = #`((0 . ,NATURAL) (1 . ,FLAT) (2 . ,NATURAL)
 
 @funindex set-octavation
 @funindex \ottava
-@funindex ottava
 
 @notation{オッターバ囲み} は譜をオクターブ単位で移調します:
 
-@lilypond[verbatim,quote,relative=2]
-a2 b
-\ottava #-2
-a2 b
-\ottava #-1
-a2 b
-\ottava #0
-a2 b
-\ottava #1
-a2 b
-\ottava #2
-a2 b
+@lilypond[verbatim,quote]
+\relative a' {
+  a2 b
+  \ottava #-2
+  a2 b
+  \ottava #-1
+  a2 b
+  \ottava #0
+  a2 b
+  \ottava #1
+  a2 b
+  \ottava #2
+  a2 b
+}
 @end lilypond
 
 @snippets
@@ -1426,7 +1420,6 @@ a2 b
 @cindex MIDI transposition (MIDI の移調)
 
 @funindex \transposition
-@funindex transposition
 
 楽器の移調を含む楽器を譜刻するとき、いくつかのパートは@c
 @notation{コンサート ピッチ} とは異なるピッチで譜刻される可能性があります。@c
@@ -1555,12 +1548,12 @@ LilyPond はどの臨時記号スタイルを使用するのかを指定する
 @lilypond[verbatim,quote]
 musicA = {
   <<
-    \relative c' {
-      cis'8 fis, bes4 <a cis>8 f bis4 |
+    \relative {
+      cis''8 fis, bes4 <a cis>8 f bis4 |
       cis2. <c, g'>4 |
     }
     \\
-    \relative c' {
+    \relative {
       ais'2 cis, |
       fis8 b a4 cis2 |
     }
@@ -1570,8 +1563,8 @@ musicA = {
 musicB = {
   \clef bass
   \new Voice {
-    \voiceTwo \relative c' {
-      <fis, a cis>8[ <fis a cis>
+    \voiceTwo \relative {
+      <fis a cis>8[ <fis a cis>
       \change Staff = up
       cis' cis
       \change Staff = down
@@ -1637,12 +1630,12 @@ musicB = {
 @lilypond[quote]
 musicA = {
   <<
-    \relative c' {
-      cis'8 fis, bes4 <a cis>8 f bis4 |
+    \relative {
+      cis''8 fis, bes4 <a cis>8 f bis4 |
       cis2. <c, g'>4 |
     }
     \\
-    \relative c' {
+    \relative {
       ais'2 cis, |
       fis8 b a4 cis2 |
     }
@@ -1652,8 +1645,8 @@ musicA = {
 musicB = {
   \clef bass
   \new Voice {
-    \voiceTwo \relative c' {
-      <fis, a cis>8[ <fis a cis>
+    \voiceTwo \relative {
+      <fis a cis>8[ <fis a cis>
       \change Staff = up
       cis' cis
       \change Staff = down
@@ -1709,12 +1702,12 @@ musicB = {
 @lilypond[quote]
 musicA = {
   <<
-    \relative c' {
-      cis'8 fis, bes4 <a cis>8 f bis4 |
+    \relative {
+      cis''8 fis, bes4 <a cis>8 f bis4 |
       cis2. <c, g'>4 |
     }
     \\
-    \relative c' {
+    \relative {
       ais'2 cis, |
       fis8 b a4 cis2 |
     }
@@ -1724,8 +1717,8 @@ musicA = {
 musicB = {
   \clef bass
   \new Voice {
-    \voiceTwo \relative c' {
-      <fis, a cis>8[ <fis a cis>
+    \voiceTwo \relative {
+      <fis a cis>8[ <fis a cis>
       \change Staff = up
       cis' cis
       \change Staff = down
@@ -1778,12 +1771,12 @@ musicB = {
 @lilypond[quote]
 musicA = {
   <<
-    \relative c' {
-      cis'8 fis, bes4 <a cis>8 f bis4 |
+    \relative {
+      cis''8 fis, bes4 <a cis>8 f bis4 |
       cis2. <c, g'>4 |
     }
     \\
-    \relative c' {
+    \relative {
       ais'2 cis, |
       fis8 b a4 cis2 |
     }
@@ -1793,8 +1786,8 @@ musicA = {
 musicB = {
   \clef bass
   \new Voice {
-    \voiceTwo \relative c' {
-      <fis, a cis>8[ <fis a cis>
+    \voiceTwo \relative {
+      <fis a cis>8[ <fis a cis>
       \change Staff = up
       cis' cis
       \change Staff = down
@@ -1842,12 +1835,12 @@ musicB = {
 @lilypond[quote]
 musicA = {
   <<
-    \relative c' {
-      cis'8 fis, bes4 <a cis>8 f bis4 |
+    \relative {
+      cis''8 fis, bes4 <a cis>8 f bis4 |
       cis2. <c, g'>4 |
     }
     \\
-    \relative c' {
+    \relative {
       ais'2 cis, |
       fis8 b a4 cis2 |
     }
@@ -1857,8 +1850,8 @@ musicA = {
 musicB = {
   \clef bass
   \new Voice {
-    \voiceTwo \relative c' {
-      <fis, a cis>8[ <fis a cis>
+    \voiceTwo \relative {
+      <fis a cis>8[ <fis a cis>
       \change Staff = up
       cis' cis
       \change Staff = down
@@ -1910,12 +1903,12 @@ musicB = {
 @lilypond[quote]
 musicA = {
   <<
-    \relative c' {
-      cis'8 fis, bes4 <a cis>8 f bis4 |
+    \relative {
+      cis''8 fis, bes4 <a cis>8 f bis4 |
       cis2. <c, g'>4 |
     }
     \\
-    \relative c' {
+    \relative {
       ais'2 cis, |
       fis8 b a4 cis2 |
     }
@@ -1925,8 +1918,8 @@ musicA = {
 musicB = {
   \clef bass
   \new Voice {
-    \voiceTwo \relative c' {
-      <fis, a cis>8[ <fis a cis>
+    \voiceTwo \relative {
+      <fis a cis>8[ <fis a cis>
       \change Staff = up
       cis' cis
       \change Staff = down
@@ -1972,12 +1965,12 @@ musicB = {
 @lilypond[quote]
 musicA = {
   <<
-    \relative c' {
-      cis'8 fis, bes4 <a cis>8 f bis4 |
+    \relative {
+      cis''8 fis, bes4 <a cis>8 f bis4 |
       cis2. <c, g'>4 |
     }
     \\
-    \relative c' {
+    \relative {
       ais'2 cis, |
       fis8 b a4 cis2 |
     }
@@ -1987,8 +1980,8 @@ musicA = {
 musicB = {
   \clef bass
   \new Voice {
-    \voiceTwo \relative c' {
-      <fis, a cis>8[ <fis a cis>
+    \voiceTwo \relative {
+      <fis a cis>8[ <fis a cis>
       \change Staff = up
       cis' cis
       \change Staff = down
@@ -2038,12 +2031,12 @@ musicB = {
 @lilypond[quote]
 musicA = {
   <<
-    \relative c' {
-      cis'8 fis, bes4 <a cis>8 f bis4 |
+    \relative {
+      cis''8 fis, bes4 <a cis>8 f bis4 |
       cis2. <c, g'>4 |
     }
     \\
-    \relative c' {
+    \relative {
       ais'2 cis, |
       fis8 b a4 cis2 |
     }
@@ -2053,8 +2046,8 @@ musicA = {
 musicB = {
   \clef bass
   \new Voice {
-    \voiceTwo \relative c' {
-      <fis, a cis>8[ <fis a cis>
+    \voiceTwo \relative {
+      <fis a cis>8[ <fis a cis>
       \change Staff = up
       cis' cis
       \change Staff = down
@@ -2097,12 +2090,12 @@ musicB = {
 @lilypond[quote]
 musicA = {
   <<
-    \relative c' {
-      cis'8 fis, bes4 <a cis>8 f bis4 |
+    \relative {
+      cis''8 fis, bes4 <a cis>8 f bis4 |
       cis2. <c, g'>4 |
     }
     \\
-    \relative c' {
+    \relative {
       ais'2 cis, |
       fis8 b a4 cis2 |
     }
@@ -2112,8 +2105,8 @@ musicA = {
 musicB = {
   \clef bass
   \new Voice {
-    \voiceTwo \relative c' {
-      <fis, a cis>8[ <fis a cis>
+    \voiceTwo \relative {
+      <fis a cis>8[ <fis a cis>
       \change Staff = up
       cis' cis
       \change Staff = down
@@ -2160,12 +2153,12 @@ musicB = {
 @lilypond[quote]
 musicA = {
   <<
-    \relative c' {
-      cis'8 fis, bes4 <a cis>8 f bis4 |
+    \relative {
+      cis''8 fis, bes4 <a cis>8 f bis4 |
       cis2. <c, g'>4 |
     }
     \\
-    \relative c' {
+    \relative {
       ais'2 cis, |
       fis8 b a4 cis2 |
     }
@@ -2175,8 +2168,8 @@ musicA = {
 musicB = {
   \clef bass
   \new Voice {
-    \voiceTwo \relative c' {
-      <fis, a cis>8[ <fis a cis>
+    \voiceTwo \relative {
+      <fis a cis>8[ <fis a cis>
       \change Staff = up
       cis' cis
       \change Staff = down
@@ -2217,12 +2210,12 @@ musicB = {
 @lilypond[quote]
 musicA = {
   <<
-    \relative c' {
-      cis'8 fis, bes4 <a cis>8 f bis4 |
+    \relative {
+      cis''8 fis, bes4 <a cis>8 f bis4 |
       cis2. <c, g'>4 |
     }
     \\
-    \relative c' {
+    \relative {
       ais'2 cis, |
       fis8 b a4 cis2 |
     }
@@ -2232,8 +2225,8 @@ musicA = {
 musicB = {
   \clef bass
   \new Voice {
-    \voiceTwo \relative c' {
-      <fis, a cis>8[ <fis a cis>
+    \voiceTwo \relative {
+      <fis a cis>8[ <fis a cis>
       \change Staff = up
       cis' cis
       \change Staff = down
@@ -2276,12 +2269,12 @@ musicB = {
 @lilypond[quote]
 musicA = {
   <<
-    \relative c' {
-      cis'8 fis, bes4 <a cis>8 f bis4 |
+    \relative {
+      cis''8 fis, bes4 <a cis>8 f bis4 |
       cis2. <c, g'>4 |
     }
     \\
-    \relative c' {
+    \relative {
       ais'2 cis, |
       fis8 b a4 cis2 |
     }
@@ -2291,8 +2284,8 @@ musicA = {
 musicB = {
   \clef bass
   \new Voice {
-    \voiceTwo \relative c' {
-      <fis, a cis>8[ <fis a cis>
+    \voiceTwo \relative {
+      <fis a cis>8[ <fis a cis>
       \change Staff = up
       cis' cis
       \change Staff = down
@@ -2333,12 +2326,12 @@ musicB = {
 @lilypond[quote]
 musicA = {
   <<
-    \relative c' {
-      cis'8 fis, bes4 <a cis>8 f bis4 |
+    \relative {
+      cis''8 fis, bes4 <a cis>8 f bis4 |
       cis2. <c, g'>4 |
     }
     \\
-    \relative c' {
+    \relative {
       ais'2 cis, |
       fis8 b a4 cis2 |
     }
@@ -2348,8 +2341,8 @@ musicA = {
 musicB = {
   \clef bass
   \new Voice {
-    \voiceTwo \relative c' {
-      <fis, a cis>8[ <fis a cis>
+    \voiceTwo \relative {
+      <fis a cis>8[ <fis a cis>
       \change Staff = up
       cis' cis
       \change Staff = down
@@ -2395,12 +2388,12 @@ musicB = {
 @lilypond[quote]
 musicA = {
   <<
-    \relative c' {
-      cis'8 fis, bes4 <a cis>8 f bis4 |
+    \relative {
+      cis''8 fis, bes4 <a cis>8 f bis4 |
       cis2. <c, g'>4 |
     }
     \\
-    \relative c' {
+    \relative {
       ais'2 cis, |
       fis8 b a4 cis2 |
     }
@@ -2410,8 +2403,8 @@ musicA = {
 musicB = {
   \clef bass
   \new Voice {
-    \voiceTwo \relative c' {
-      <fis, a cis>8[ <fis a cis>
+    \voiceTwo \relative {
+      <fis a cis>8[ <fis a cis>
       \change Staff = up
       cis' cis
       \change Staff = down
@@ -2457,12 +2450,12 @@ musicB = {
 @lilypond[quote,staffsize=18]
 musicA = {
   <<
-    \relative c' {
-      cis'8 fis, bes4 <a cis>8 f bis4 |
+    \relative {
+      cis''8 fis, bes4 <a cis>8 f bis4 |
       cis2. <c, g'>4 |
     }
     \\
-    \relative c' {
+    \relative {
       ais'2 cis, |
       fis8 b a4 cis2 |
     }
@@ -2472,8 +2465,8 @@ musicA = {
 musicB = {
   \clef bass
   \new Voice {
-    \voiceTwo \relative c' {
-      <fis, a cis>8[ <fis a cis>
+    \voiceTwo \relative {
+      <fis a cis>8[ <fis a cis>
       \change Staff = up
       cis' cis
       \change Staff = down
@@ -2518,12 +2511,12 @@ musicB = {
 @lilypond[quote]
 musicA = {
   <<
-    \relative c' {
-      cis'8 fis, bes4 <a cis>8 f bis4 |
+    \relative {
+      cis''8 fis, bes4 <a cis>8 f bis4 |
       cis2. <c, g'>4 |
     }
     \\
-    \relative c' {
+    \relative {
       ais'2 cis, |
       fis8 b a4 cis2 |
     }
@@ -2533,8 +2526,8 @@ musicA = {
 musicB = {
   \clef bass
   \new Voice {
-    \voiceTwo \relative c' {
-      <fis, a cis>8[ <fis a cis>
+    \voiceTwo \relative {
+      <fis a cis>8[ <fis a cis>
       \change Staff = up
       cis' cis
       \change Staff = down
@@ -2577,12 +2570,12 @@ musicB = {
 @lilypond[quote]
 musicA = {
   <<
-    \relative c' {
-      cis'8 fis, bes4 <a cis>8 f bis4 |
+    \relative {
+      cis''8 fis, bes4 <a cis>8 f bis4 |
       cis2. <c, g'>4 |
     }
     \\
-    \relative c' {
+    \relative {
       ais'2 cis, |
       fis8 b a4 cis2 |
     }
@@ -2592,8 +2585,8 @@ musicA = {
 musicB = {
   \clef bass
   \new Voice {
-    \voiceTwo \relative c' {
-      <fis, a cis>8[ <fis a cis>
+    \voiceTwo \relative {
+      <fis a cis>8[ <fis a cis>
       \change Staff = up
       cis' cis
       \change Staff = down
@@ -2676,7 +2669,7 @@ musicB = {
 局部的に臨時記号スタイルを @code{forget} に変更する関数を定義します:
 
 @lilypond[verbatim,quote]
-forget = #(define-music-function (parser location music) (ly:music?) #{
+forget = #(define-music-function (music) (ly:music?) #{
   \accidentalStyle forget
   #music
   \accidentalStyle modern
@@ -2724,8 +2717,8 @@ forget = #(define-music-function (parser location music) (ly:music?) #{
   }
 }
 
-\relative c'' {
-  aes c e2
+\relative {
+  aes' c e2
   cis,1
 }
 @end lilypond
@@ -2800,16 +2793,18 @@ forget = #(define-music-function (parser location music) (ly:music?) #{
 
 符頭を変更することができます:
 
-@lilypond[verbatim,quote,relative=2]
-c4 b
-\override NoteHead.style = #'cross
-c4 b
-\revert NoteHead.style
-a b
-\override NoteHead.style = #'harmonic
-a b
-\revert NoteHead.style
-c4 d e f
+@lilypond[verbatim,quote]
+\relative c'' {
+  c4 b
+  \override NoteHead.style = #'cross
+  c4 b
+  \revert NoteHead.style
+  a b
+  \override NoteHead.style = #'harmonic
+  a b
+  \revert NoteHead.style
+  c4 d e f
+}
 @end lilypond
 
 すべての符頭スタイルを調べるには、@ref{Note head styles} を参照してください。
@@ -2818,21 +2813,25 @@ c4 d e f
 以下の定義済みコマンドは符頭を譜コンテキストとタブ譜コンテキストで変更し、@c
 何らかの音楽的意味を表すために使用することができます:
 
-@lilypond[verbatim,quote,relative=2]
-c4 b
-\xNotesOn
- a b c4 b
-\xNotesOff
-c4 d
+@lilypond[verbatim,quote]
+\relative {
+  c''4 b
+  \xNotesOn
+   a b c4 b
+  \xNotesOff
+  c4 d
+}
 @end lilypond
 
 この定義済みコマンドの音楽関数は、譜コンテキストやタブ譜コンテキストの@c
 和音の内外で使用して、符頭を×の形にすることができます:
 
-@lilypond[verbatim,quote,relative=2]
-c4 b
-\xNote { e f }
-c b < g \xNote c f > b
+@lilypond[verbatim,quote]
+\relative {
+  c''4 b
+  \xNote { e f }
+  c b < g \xNote c f > b
+}
 @end lilypond
 
 @code{\xNote}, @code{\xNotesOn} それに @code{\xNotesOff} の同義語として
@@ -2842,8 +2841,10 @@ c b < g \xNote c f > b
 
 また、和音の中でのみ使用できるダイアモンド形のための短縮記法があります:
 
-@lilypond[verbatim,quote,relative=2]
-<c f\harmonic>2 <d a'\harmonic>4 <c g'\harmonic>
+@lilypond[verbatim,quote]
+\relative c'' {
+  <c f\harmonic>2 <d a'\harmonic>4 <c g'\harmonic> f\harmonic
+}
 @end lilypond
 
 @predefined
@@ -2887,9 +2888,7 @@ c b < g \xNote c f > b
 @cindex note heads, easy play (演奏を容易にする符頭)
 
 @funindex \easyHeadsOn
-@funindex easyHeadsOn
 @funindex \easyHeadsOff
-@funindex easyHeadsOff
 
 @q{演奏を容易にする} 符頭は、符頭の中に音符名を含みます。@c
 これは、初心者のための楽譜で使用されます。@c
@@ -2956,15 +2955,10 @@ c b < g \xNote c f > b
 @cindex note heads, Walker
 
 @funindex \aikenHeads
-@funindex aikenHeads
 @funindex \sacredHarpHeads
-@funindex sacredHarpHeads
 @funindex \southernHarmonyHeads
-@funindex southernHarmonyHeads
 @funindex \funkHeads
-@funindex funkHeads
 @funindex \walkerHeads
-@funindex walkerHeads
 
 シェイプ ノート記譜法では、@c
 符頭の形状は音階の中での音符の位置付けに対応します。@c
@@ -2973,52 +2967,49 @@ c b < g \xNote c f > b
 Funk (Harmonica Sacra)、Walker、それに Aiken (Christian Harmony) スタイルで@c
 使用されます:
 
-@lilypond[verbatim,quote,relative=2]
-\aikenHeads
-c, d e f g2 a b1 c \break
-\sacredHarpHeads
-c,4 d e f g2 a b1 c \break
-\southernHarmonyHeads
-c,4 d e f g2 a b1 c \break
-\funkHeads
-c,4 d e f g2 a b1 c \break
-\walkerHeads
-c,4 d e f g2 a b1 c \break
+@lilypond[verbatim,quote]
+\relative c'' {
+  \aikenHeads
+  c, d e f g2 a b1 c \break
+  \sacredHarpHeads
+  c,4 d e f g2 a b1 c \break
+  \southernHarmonyHeads
+  c,4 d e f g2 a b1 c \break
+  \funkHeads
+  c,4 d e f g2 a b1 c \break
+  \walkerHeads
+  c,4 d e f g2 a b1 c \break
+}
 @end lilypond
 
 @funindex \key
-@funindex key
 @funindex \aikenHeadsMinor
-@funindex aikenHeadsMinor
 @funindex \sacredHarpHeadsMinor
-@funindex sacredHarpHeadsMinor
 @funindex \southernHarmonyHeadsMinor
-@funindex southernHarmonyHeadsMinor
 @funindex \funkHeadsMinor
-@funindex funkHeadsMinor
 @funindex \walkerHeadsMinor
-@funindex walkerHeadsMinor
 
 符頭の形状は音階の中での位置に対応し、@c
 音階のベースは @code{\key} コマンドによって決まります。@c
 マイナーで記述している場合、@c
 符頭の形状を決定する音階ステップはメジャーの場合との相対関係になります:
 
-@lilypond[verbatim,quote,relative=2]
-\key a \minor
-\aikenHeads
-a b c d e2 f g1 a \break
-\aikenHeadsMinor
-a,4 b c d e2 f g1 a \break
-\sacredHarpHeadsMinor
-a,2 b c d \break
-\southernHarmonyHeadsMinor
-a2 b c d \break
-\funkHeadsMinor
-a2 b c d \break
-\walkerHeadsMinor
-a2 b c d \break
-
+@lilypond[verbatim,quote]
+\relative c'' {
+  \key a \minor
+  \aikenHeads
+  a b c d e2 f g1 a \break
+  \aikenHeadsMinor
+  a,4 b c d e2 f g1 a \break
+  \sacredHarpHeadsMinor
+  a,2 b c d \break
+  \southernHarmonyHeadsMinor
+  a2 b c d \break
+  \funkHeadsMinor
+  a2 b c d \break
+  \walkerHeadsMinor
+  a2 b c d \break
+}
 @end lilypond
 
 @predefined
@@ -3065,20 +3056,18 @@ a2 b c d \break
 @cindex note heads, slashed (スラッシュ形の符頭)
 
 @funindex \improvisationOn
-@funindex improvisationOn
 @funindex \improvisationOff
-@funindex improvisationOff
 
 即興はしばしばスラッシュ形の符頭で記されます。@c
 そのような表記では、演奏者は好みのピッチを選ぶことができますが、@c
 指定されたリズムに従って演奏する必要があります。@c
 このような符頭は以下のようにして作成することができます:
 
-@lilypond[verbatim,quote,relative=2]
+@lilypond[verbatim,quote]
 \new Voice \with {
   \consists "Pitch_squash_engraver"
-} {
-  e8 e g a a16( bes) a8 g
+} \relative {
+  e''8 e g a a16( bes) a8 g
   \improvisationOn
   e8 ~
   2 ~ 8 f4 f8 ~