]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/ja/notation/expressive.itely
Issue 4894: Remove unescaped @funindex entries
[lilypond.git] / Documentation / ja / notation / expressive.itely
index 97973e4d2b0087726716eaa972e4f5946e2077a4..02f8b4e6ff8fa6b924f77e194321b03c64cbe49c 100644 (file)
@@ -5,8 +5,9 @@
     When revising a translation, copy the HEAD committish of the
     version that you are working on.  For details, see the Contributors'
     Guide, node Updating translation committishes..@end ignore
+@end ignore
 
-@c \version "2.17.25"
+@c \version "2.19.21"
 
 
 @c Translators: Yoshiki Sawada
 @ref{List of articulations} でリストアップしています。@c
 例えば:
 
-@lilypond[verbatim,quote,relative=2]
-c4\staccato c\mordent b2\turn
-c1\fermata
+@lilypond[verbatim,quote]
+\relative {
+  c''4\staccato c\mordent b2\turn
+  c1\fermata
+}
 @end lilypond
 
 @cindex marcato (マルカート)
@@ -179,10 +182,10 @@ c4->  c-.  c2-_
 ことができます (複数小節の休符にだけ付けることができます)。@c
 このコマンドは @code{MultiMeasureRestText} オブジェクトを作成します。
 
-@lilypond[verbatim,quote,relative=2]
+@lilypond[verbatim,quote,fragment]
 \override Script.color = #red
 \override MultiMeasureRestText.color = #blue
-a2\fermata r\fermata
+a'2\fermata r\fermata
 R1\fermataMarkup
 @end lilypond
 
@@ -235,43 +238,24 @@ R1\fermataMarkup
 @cindex dynamics, absolute (絶対強弱記号)
 
 @funindex \ppppp
-@funindex ppppp
 @funindex \pppp
-@funindex pppp
 @funindex \ppp
-@funindex ppp
 @funindex \pp
-@funindex pp
 @funindex \p
-@funindex p
 @funindex \mp
-@funindex mp
 @funindex \mf
-@funindex mf
 @funindex \f
-@funindex f
 @funindex \ff
-@funindex ff
 @funindex \fff
-@funindex fff
 @funindex \ffff
-@funindex ffff
 @funindex \fffff
-@funindex fffff
 @funindex \fp
-@funindex fp
 @funindex \sf
-@funindex sf
 @funindex \sff
-@funindex sff
 @funindex \sp
-@funindex sp
 @funindex \spp
-@funindex spp
 @funindex \sfz
-@funindex sfz
 @funindex \rfz
-@funindex rfz
 
 絶対強弱記号は音符の後にコマンドを用いて
 -- @code{c4\ff} などのように
@@ -284,10 +268,12 @@ R1\fermataMarkup
 強弱記号を手動で譜の上または下に配置することもできます --
 @ref{Direction and placement} を参照してください。
 
-@lilypond[verbatim,quote,relative=2]
-c2\ppp c\mp
-c2\rfz c^\mf
-c2_\spp c^\ff
+@lilypond[verbatim,quote]
+\relative c'' {
+  c2\ppp c\mp
+  c2\rfz c^\mf
+  c2_\spp c^\ff
+}
 @end lilypond
 
 @c 保留
@@ -300,9 +286,7 @@ c2_\spp c^\ff
 @funindex \>
 @funindex \!
 @funindex \cr
-@funindex cr
 @funindex \decr
-@funindex decr
 
 @notation{クレッシェンド} 記号は @code{\<} で始まり、@code{\!}、@c
 絶対強弱記号あるいは追加のクレッシェンド記号またはデクレッシェンド記号で@c
@@ -314,14 +298,16 @@ c2_\spp c^\ff
 用いる場合もあります。@c
 この記譜法を用いるとデフォルトでは @notation{ヘアピン} が譜刻されます。
 
-@lilypond[verbatim,quote,relative=2]
-c2\< c\!
-d2\< d\f
-e2\< e\>
-f2\> f\!
-e2\> e\mp
-d2\> d\>
-c1\!
+@lilypond[verbatim,quote]
+\relative c'' {
+  c2\< c\!
+  d2\< d\f
+  e2\< e\>
+  f2\> f\!
+  e2\> e\mp
+  d2\> d\>
+  c1\!
+}
 @end lilypond
 
 @code{\!} で終了するヘアピンは、@c
@@ -332,15 +318,19 @@ c1\!
 音符の中央で終了します。@c
 次のへアピンは、通常通りに音符の左端で始まる代わりに、右端から始まります。
 
-@lilypond[verbatim,quote,relative=2]
-c1\< | c4 a c\< a | c4 a c\! a\< | c4 a c a\!
+@lilypond[verbatim,quote]
+\relative {
+  c''1\< | c4 a c\< a | c4 a c\! a\< | c4 a c a\!
+}
 @end lilypond
 
 @code{\!} の代わりに絶対強弱記号で終了するヘアピも同じように譜刻されます。@c
 しかしながら、絶対強弱記号の幅によってヘアピンの終了点は変わります。
 
-@lilypond[verbatim,quote,relative=2]
-c1\< | c4 a c\mf a | c1\< | c4 a c\ffff a
+@lilypond[verbatim,quote]
+\relative {
+  c''1\< | c4 a c\mf a | c1\< | c4 a c\ffff a
+}
 @end lilypond
 
 @cindex multiple dynamic marks on one note (1 つの音符に複数の強弱記号をつける)
@@ -349,71 +339,69 @@ c1\< | c4 a c\mf a | c1\< | c4 a c\ffff a
 これは特に、同じ音符に @notation{クレッシェンド} と @notation{デクレッシェンド}
 を付ける場合に有用です。
 
-@lilypond[verbatim,quote,relative=2]
-c4\< c\! d\> e\!
-<< f1 { s4 s4\< s4\> s4\! } >>
+@lilypond[verbatim,quote]
+\relative {
+  c''4\< c\! d\> e\!
+  << f1 { s4 s4\< s4\> s4\! } >>
+}
 @end lilypond
 
 @cindex espressivo articulation (表現的なアーティキュレーション)
 
 @funindex \espressivo
-@funindex espressivo
 
 @code{\espressivo} コマンドを用いて、同じ音符にクレッシェンドとデクレッシェンドを@c
 付けることができます。@c
 しかしながら、これは強弱記号ではなくアーティキュレーションとして実装されている@c
 ということに注意してください。
 
-@lilypond[verbatim,quote,relative=2]
-c2 b4 a
-g1\espressivo
+@lilypond[verbatim,quote]
+\relative {
+  c''2 b4 a
+  g1\espressivo
+}
 @end lilypond
 
 
 @funindex \cresc
-@funindex cresc
 @funindex \decresc
-@funindex decresc
 @funindex \dim
-@funindex dim
 テキストのクレッシェンド記号は @code{\cresc} で開始します。@c
 テキストのデクレッシェンド記号は @code{\decresc} または
 @code{\dim} で開始します。@c
 必要に応じて延長線が譜刻されます。
 
-@lilypond[verbatim,quote,relative=2]
-g8\cresc a b c b c d e\mf |
-f8\decresc e d c e\> d c b |
-a1\dim ~ |
-a2. r4\! |
+@lilypond[verbatim,quote]
+\relative {
+  g'8\cresc a b c b c d e\mf |
+  f8\decresc e d c e\> d c b |
+  a1\dim ~ |
+  a2. r4\! |
+}
 @end lilypond
 
 @funindex \crescTextCresc
-@funindex crescTextCresc
 @funindex \dimTextDecresc
-@funindex dimTextDecresc
 @funindex \dimTextDecr
-@funindex dimTextDecr
 @funindex \dimTextDim
-@funindex dimTextDim
 @funindex \crescHairpin
-@funindex crescHairpin
 @funindex \dimHairpin
-@funindex dimHairpin
 
 強弱のテキスト符号の変更でヘアピンを置換することもできます:
-@lilypond[verbatim,quote,relative=2]
-\crescTextCresc
-c4\< d e f\! |
-\dimTextDecresc
-g4\> e d c\! |
-\dimTextDecr
-e4\> d c b\! |
-\dimTextDim
-d4\> c b a\! |
-\crescHairpin
-\dimHairpin
-c4\< d\! e\> d\! |
+@lilypond[verbatim,quote]
+\relative c'' {
+  \crescTextCresc
+  c4\< d e f\! |
+  \dimTextDecresc
+  g4\> e d c\! |
+  \dimTextDecr
+  e4\> d c b\! |
+  \dimTextDim
+  d4\> c b a\! |
+  \crescHairpin
+  \dimHairpin
+  c4\< d\! e\> d\! |
+}
 @end lilypond
 
 新たに絶対強弱記号や強弱に対応させるテキストを作成するには、@c
@@ -428,11 +416,8 @@ c4\< d\! e\> d\! |
 強弱記号の垂直方向の位置は
 @rinternals{DynamicLineSpanner} によって処理されます。
 @funindex \dynamicUp
-@funindex dynamicUp
 @funindex \dynamicDown
-@funindex dynamicDown
 @funindex \dynamicNeutral
-@funindex dynamicNeutral
 
 @code{Dynamics} を用いて水平線上に強弱記号を譜刻することができます。@c
 タイミングを示すために空白休符を使用します。@c
@@ -443,8 +428,8 @@ c4\< d\! e\> d\! |
 
 @lilypond[verbatim,quote]
 <<
-  \new Staff \relative c' {
-    c2 d4 e |
+  \new Staff \relative {
+    c'2 d4 e |
     c4 e e,2 |
     g'4 a g a |
     c1 |
@@ -533,8 +518,8 @@ c4\< d\! e\> d\! |
 @lilypond[verbatim,quote]
 moltoF = \markup { molto \dynamic f }
 
-\relative c' {
-  <d e>16_\moltoF <d e>
+\relative {
+  <d' e>16_\moltoF <d e>
   <d e>2..
 }
 @end lilypond
@@ -543,9 +528,7 @@ moltoF = \markup { molto \dynamic f }
 @cindex dynamics, parenthesis (括弧の強弱記号)
 @cindex editorial dynamics (注釈の強弱記号)
 @funindex \bracket
-@funindex bracket
 @funindex \dynamic
-@funindex dynamic
 
 マークアップ モードでは、@c
 注釈の強弱記号 (括弧や角括弧で囲まれます) を作成することができます。@c
@@ -556,8 +539,8 @@ roundF = \markup {
     \center-align \concat { \bold { \italic ( }
            \dynamic f \bold { \italic ) } } }
 boxF = \markup { \bracket { \dynamic f } }
-\relative c' {
-  c1_\roundF
+\relative {
+  c'1_\roundF
   c1_\boxF
 }
 @end lilypond
@@ -570,8 +553,8 @@ boxF = \markup { \bracket { \dynamic f } }
 
 @lilypond[verbatim,quote]
 sfzp = #(make-dynamic-script "sfzp")
-\relative c' {
-  c4 c c\sfzp c
+\relative {
+  c'4 c c\sfzp c
 }
 @end lilypond
 
@@ -597,8 +580,8 @@ mfEspress = \markup { \center-align \line {
 roundFdynamic = #(make-dynamic-script roundF)
 boxFdynamic = #(make-dynamic-script boxF)
 mfEspressDynamic = #(make-dynamic-script mfEspress)
-\relative c' {
-  c4_\roundFdynamic\< d e f
+\relative {
+  c'4_\roundFdynamic\< d e f
   g,1~_\boxFdynamic\>
   g1
   g'1~\mfEspressDynamic
@@ -614,8 +597,8 @@ Scheme 形式のマークアップ モードを用いることもできます。
 moltoF = #(make-dynamic-script
             (markup #:normal-text "molto"
                     #:dynamic "f"))
-\relative c' {
-  <d e>16 <d e>
+\relative {
+  <d' e>16 <d e>
   <d e>2..\moltoF
 }
 @end lilypond
@@ -628,8 +611,8 @@ moltoF = \tweak DynamicText.self-alignment-X #LEFT
          #(make-dynamic-script
             (markup #:normal-text "molto"
                     #:dynamic "f"))
-\relative c' {
-  <d e>16 <d e>
+\relative {
+  <d' e>16 <d e>
   <d e>2..\moltoF <d e>1
 }
 @end lilypond
@@ -678,19 +661,19 @@ LilyPond の拡張:
 @warning{多声音楽では、@c
 スラーが始まったボイスでそのスラーを終わらせる必要があります。}
 
-@lilypond[verbatim,quote,relative=2]
-f4( g a) a8 b(
-a4 g2 f4)
-<c e>2( <b d>2)
+@lilypond[verbatim,quote]
+\relative {
+  f''4( g a) a8 b(
+  a4 g2 f4)
+  <c e>2( <b d>2)
+}
 @end lilypond
 
 @cindex slurs, manual placement (手動でスラーを配置する)
 @cindex slurs, below notes (音符の下にスラーを配置する)
 @cindex slurs, above notes (音符の上にスラーを配置する)
 @funindex \slurDown
-@funindex slurDown
 @funindex \slurNeutral
-@funindex slurNeutral
 
 スラーを手動で音符の上または下に配置することができます。@c
 @ref{Direction and placement} を参照してください。
@@ -717,64 +700,63 @@ a4 g2 f4)
 @cindex slur, dashed (破線のスラー)
 @cindex style, slur (スラーのスタイル)
 @funindex \slurDashed
-@funindex slurDashed
 @funindex \slurDotted
-@funindex slurDotted
 @funindex \slurSolid
-@funindex slurSolid
 
 スラーは実線、点線あるいは破線のどれかになります。@c
 実線がスラーのデフォルト スタイルです:
 
-@lilypond[verbatim,quote,relative=1]
-c4( e g2)
-\slurDashed
-g4( e c2)
-\slurDotted
-c4( e g2)
-\slurSolid
-g4( e c2)
+@lilypond[verbatim,quote]
+\relative {
+  c'4( e g2)
+  \slurDashed
+  g4( e c2)
+  \slurDotted
+  c4( e g2)
+  \slurSolid
+  g4( e c2)
+}
 @end lilypond
 
 @funindex \slurHalfDashed
-@funindex slurHalfDashed
 @funindex \slurHalfSolid
-@funindex slurHalfSolid
 @cindex slur, half dashed and half solid (半分が破線で半分が実線のスラー)
 
 スラーの半分を破線 (前半を破線、後半を実線) にする、あるいは、@c
 半分を実線 (前半を実線、後半を破線) にすることもできます:
 
-@lilypond[verbatim,quote,relative=1]
-c4( e g2)
-\slurHalfDashed
-g4( e c2)
-\slurHalfSolid
-c4( e g2)
-\slurSolid
-g4( e c2)
+@lilypond[verbatim,quote]
+\relative {
+  c'4( e g2)
+  \slurHalfDashed
+  g4( e c2)
+  \slurHalfSolid
+  c4( e g2)
+  \slurSolid
+  g4( e c2)
+}
 @end lilypond
 
 @funindex \slurDashPattern
-@funindex slurDashPattern
 @cindex slur, defining dash patterns (スラーの破線パターンを定義する)
 
 スラーの破線パターンを定義することができます:
 
-@lilypond[verbatim,quote,relative=1]
-c4( e g2)
-\slurDashPattern #0.7 #0.75
-g4( e c2)
-\slurDashPattern #0.5 #2.0
-c4( e g2)
-\slurSolid
-g4( e c2)
+@lilypond[verbatim,quote]
+\relative {
+  c'4( e g2)
+  \slurDashPattern #0.7 #0.75
+  g4( e c2)
+  \slurDashPattern #0.5 #2.0
+  c4( e g2)
+  \slurSolid
+  g4( e c2)
+}
 @end lilypond
 
 
 
 @funindex \slurUp
-@funindex slurUp
 
 
 @predefined
@@ -833,17 +815,16 @@ g4( e c2)
 音楽センテンスを示す @notation{フレージング スラー} (またはフレーズ記号) は@c
 コマンド @code{\(} と @code{\)} を用いて記述します:
 
-@lilypond[verbatim,quote,relative=2]
-c4\( d( e) f(
-e2) d\)
+@lilypond[verbatim,quote]
+\relative {
+  c''4\( d( e) f(
+  e2) d\)
+}
 @end lilypond
 
 @funindex \phrasingSlurUp
-@funindex phrasingSlurUp
 @funindex \phrasingSlurDown
-@funindex phrasingSlurDown
 @funindex \phrasingSlurNeutral
-@funindex phrasingSlurNeutral
 
 印刷の上では、フレージング スラーは通常のスラーとほとんど同じです。@c
 しかしながら、それぞれ異なるオブジェクトとして取り扱われます。@c
@@ -860,12 +841,9 @@ e2) d\)
 
 同時進行あるいは重なり合うフレージング スラーは許可されません。
 
-@funindex phrasingSlurDashed
 @funindex \phrasingSlurDashed
 @funindex \phrasingSlurDotted
-@funindex phrasingSlurDotted
 @funindex \phrasingSlurSolid
-@funindex phrasingSlurSolid
 @cindex phrasing slur, dashed (破線のフレージング スラー)
 @cindex dashed phrasing slur (破線のフレージング スラー)
 @cindex phrasing slur, dotted (点線のフレージング スラー)
@@ -876,52 +854,55 @@ e2) d\)
 フレージング スラーを実線、点線あるいは破線にすることができます。@c
 実線がフレージング スラーのデフォルト スタイルです:
 
-@lilypond[verbatim,quote,relative=1]
-c4\( e g2\)
-\phrasingSlurDashed
-g4\( e c2\)
-\phrasingSlurDotted
-c4\( e g2\)
-\phrasingSlurSolid
-g4\( e c2\)
+@lilypond[verbatim,quote]
+\relative {
+  c'4\( e g2\)
+  \phrasingSlurDashed
+  g4\( e c2\)
+  \phrasingSlurDotted
+  c4\( e g2\)
+  \phrasingSlurSolid
+  g4\( e c2\)
+}
 @end lilypond
 
-@funindex phrasingSlurHalfDashed
 @funindex \phrasingSlurHalfDashed
 @funindex \phrasingSlurHalfSolid
-@funindex phrasingSlurHalfSolid
 @cindex phrasing slur, half solid and half dashed (半分が実線で半分が破線のフレージング スラー)
 @cindex slur, half solid and half dashed phrasing (半分が実線で半分が破線のフレージング スラー)
 
 フレージング スラーの半分を破線 (前半を破線、後半を実線) にする、あるいは、@c
 半分を実線 (前半を実線、後半を破線) にすることもできます:
 
-@lilypond[verbatim,quote,relative=1]
-c4\( e g2\)
-\phrasingSlurHalfDashed
-g4\( e c2\)
-\phrasingSlurHalfSolid
-c4\( e g2\)
-\phrasingSlurSolid
-g4\( e c2\)
+@lilypond[verbatim,quote]
+\relative {
+  c'4\( e g2\)
+  \phrasingSlurHalfDashed
+  g4\( e c2\)
+  \phrasingSlurHalfSolid
+  c4\( e g2\)
+  \phrasingSlurSolid
+  g4\( e c2\)
+}
 @end lilypond
 
 @funindex \phrasingSlurDashPattern
-@funindex phrasingSlurDashPattern
 @cindex phrasing slur, defining dash patterns
 @cindex slur, phrasing, defining dash patterns (フレージング スラーの破線パターンを定義する)
 @cindex slur, defining dash patterns for phrasing (フレージング スラーの破線パターンを定義する)
 
 フレージング スラーの破線パターンを定義することができます:
 
-@lilypond[verbatim,quote,relative=1]
-c4\( e g2\)
-\phrasingSlurDashPattern #0.7 #0.75
-g4\( e c2\)
-\phrasingSlurDashPattern #0.5 #2.0
-c4\( e g2\)
-\phrasingSlurSolid
-g4\( e c2\)
+@lilypond[verbatim,quote]
+\relative {
+  c'4\( e g2\)
+  \phrasingSlurDashPattern #0.7 #0.75
+  g4\( e c2\)
+  \phrasingSlurDashPattern #0.5 #2.0
+  c4\( e g2\)
+  \phrasingSlurSolid
+  g4\( e c2\)
+}
 @end lilypond
 
 フレージング スラーに対する破線パターンの定義は、@c
@@ -963,19 +944,18 @@ g4\( e c2\)
 @cindex breath marks (ブレス記号)
 @cindex pause mark (休止記号)
 @funindex \breathe
-@funindex breathe
 
 ブレス記号は @code{\breathe} を用いて入力します:
 
-@lilypond[verbatim,quote,relative=2]
-c2. \breathe d4
+@lilypond[verbatim,quote]
+{ c''2. \breathe d''4 }
 @end lilypond
 
 ブレス記号は自動連桁を終わらせます。@c
 この振る舞いをオーバライドする方法は、@ref{手動連桁} を参照してください。
 
-@lilypond[verbatim,quote,relative=2]
-c8 \breathe d e f g2
+@lilypond[verbatim,quote]
+\relative { c''8 \breathe d e f g2 }
 @end lilypond
 
 @c 保留
@@ -1026,20 +1006,21 @@ divisiones (ディビジョン: 区切り) がサポートされています。@
 @cindex falls (Fall)
 @cindex doits (Doit)
 @funindex \bendAfter
-@funindex bendAfter
 
 @code{\bendAfter} コマンドを用いて、@c
 @notation{Fall} と @notation{Doit} 音符にを付け加えることができます。@c
 Fall あるいは Doit の向きはプラスあるいはマイナス (上あるいは下) で示します。@c
 指示の数は Fall あるいは Doit の主音符を展開させるピッチの幅を示します。
 
-@lilypond[verbatim,quote,relative=2]
-c2\bendAfter #+4
-c2\bendAfter #-4
-c2\bendAfter #+6.5
-c2\bendAfter #-6.5
-c2\bendAfter #+8
-c2\bendAfter #-8
+@lilypond[verbatim,quote]
+\relative c'' {
+  c2\bendAfter #+4
+  c2\bendAfter #-4
+  c2\bendAfter #+6.5
+  c2\bendAfter #-6.5
+  c2\bendAfter #+8
+  c2\bendAfter #-8
+}
 @end lilypond
 
 @snippets
@@ -1075,15 +1056,16 @@ c2\bendAfter #-8
 
 @cindex glissando (グリッサンド)
 @funindex \glissando
-@funindex glissando
 
 @notation{グリッサンド} は音符の後に @code{\glissando} を付けることに@c
 よって作成されます:
 
-@lilypond[verbatim,quote,relative=2]
-g2\glissando g'
-c2\glissando c,
-\afterGrace f,1\glissando f'16
+@lilypond[verbatim,quote]
+\relative {
+  g'2\glissando g'
+  c2\glissando c,
+  \afterGrace f,1\glissando f'16
+}
 @end lilypond
 
 グリッサンドは譜を跨いで音符を結ぶことができます:
@@ -1110,20 +1092,22 @@ c2\glissando c,
 和音の音符は入力ファイル @file{.ly} で出現する順に 0, 1, @dots{} と@c
 番号が付きます。
 
-@lilypond[verbatim,quote,relative=2]
-<c, e>1\glissando g' |
-<c, e>1\glissando |
-<g' b> |
-\break
-\set glissandoMap = #'((0 . 1) (1 . 0))
-<c, g'>1\glissando |
-<d a'> |
-\set glissandoMap = #'((0 . 0) (0 . 1) (0 . 2))
-c1\glissando |
-<d f a> |
-\set glissandoMap = #'((2 . 0) (1 . 0) (0 . 1))
-<f d a'>1\glissando |
-<c c'> |
+@lilypond[verbatim,quote]
+\relative {
+  <c' e>1\glissando g' |
+  <c, e>1\glissando |
+  <g' b> |
+  \break
+  \set glissandoMap = #'((0 . 1) (1 . 0))
+  <c, g'>1\glissando |
+  <d a'> |
+  \set glissandoMap = #'((0 . 0) (0 . 1) (0 . 2))
+  c1\glissando |
+  <d f a> |
+  \set glissandoMap = #'((2 . 0) (1 . 0) (0 . 1))
+  <f d a'>1\glissando |
+  <c c'> |
+}
 @end lilypond
 
 異なるスタイルのグリッサンドを作成することもできます。@c
@@ -1170,68 +1154,65 @@ c1\glissando |
 @cindex chord, broken (変則和音)
 
 @funindex \arpeggio
-@funindex arpeggio
 @funindex \arpeggioArrowUp
-@funindex arpeggioArrowUp
 @funindex \arpeggioArrowDown
-@funindex arpeggioArrowDown
 @funindex \arpeggioNormal
-@funindex arpeggioNormal
 
 和音の @notation{アルペジオ} (変則和音とも呼ばれます) は和音構造の後に
 @code{\arpeggio} を付けることによって記述されます:
 
-@lilypond[verbatim,quote,relative=1]
-<c e g c>1\arpeggio
+@lilypond[verbatim,quote]
+\relative { <c' e g c>1\arpeggio }
 @end lilypond
 
 異なるタイプのアルペジオを描くこともできます。@c
 @code{\arpeggioNormal} は通常のアルペジオに戻します:
 
-@lilypond[verbatim,quote,relative=1]
-<c e g c>2\arpeggio
+@lilypond[verbatim,quote]
+\relative {
+  <c' e g c>2\arpeggio
 
-\arpeggioArrowUp
-<c e g c>2\arpeggio
+  \arpeggioArrowUp
+  <c e g c>2\arpeggio
 
-\arpeggioArrowDown
-<c e g c>2\arpeggio
+  \arpeggioArrowDown
+  <c e g c>2\arpeggio
 
-\arpeggioNormal
-<c e g c>2\arpeggio
+  \arpeggioNormal
+  <c e g c>2\arpeggio
+}
 @end lilypond
 
 @cindex arpeggio symbols, special (特殊なアルペジオ シンボル)
 @cindex special arpeggio symbols (特殊なアルペジオ シンボル)
 
 @funindex \arpeggioBracket
-@funindex arpeggioBracket
 @funindex \arpeggioParenthesis
-@funindex arpeggioParenthesis
 @funindex \arpeggioParenthesisDashed
-@funindex arpeggioParenthesisDashed
 
 特殊な @emph{括弧スタイル} のアルペジオ シンボルを作成することができます:
 
-@lilypond[verbatim,quote,relative=1]
-<c e g c>2
+@lilypond[verbatim,quote]
+\relative {
+  <c' e g c>2
 
-\arpeggioBracket
-<c e g c>2\arpeggio
+  \arpeggioBracket
+  <c e g c>2\arpeggio
 
-\arpeggioParenthesis
-<c e g c>2\arpeggio
+  \arpeggioParenthesis
+  <c e g c>2\arpeggio
 
-\arpeggioParenthesisDashed
-<c e g c>2\arpeggio
+  \arpeggioParenthesisDashed
+  <c e g c>2\arpeggio
 
-\arpeggioNormal
-<c e g c>2\arpeggio
+  \arpeggioNormal
+  <c e g c>2\arpeggio
+}
 @end lilypond
 
-括弧スタイルのアルペジオの破線プロパティは @code{'dash-details} プロパティで@c
+括弧スタイルのアルペジオの破線プロパティは @code{'dash-definition} プロパティで@c
 制御します。@c
-@code{'dash-details} プロパティについては @ref{スラー} で説明しています。
+@code{'dash-definition} プロパティについては @ref{スラー} で説明しています。
 
 アルペジオをタイを用いて明示的に描き出すことができます。@c
 詳細は @ref{タイ} を参照してください。
@@ -1293,11 +1274,8 @@ c1\glissando |
 @cindex trills (トリル)
 
 @funindex \trill
-@funindex trill
 @funindex \startTrillSpan
-@funindex startTrillSpan
 @funindex \stopTrillSpan
-@funindex stopTrillSpan
 
 延長線を持たない短い @notation{トリル} は @code{\trill} で譜刻されます。@c
 @ref{アーティキュレーションと装飾} を参照してください。
@@ -1305,60 +1283,69 @@ c1\glissando |
 延長線を持つ長いトリルは @code{\startTrillSpan} と @code{\stopTrillSpan} で@c
 作成されます:
 
-@lilypond[verbatim,quote,relative=2]
-d1\startTrillSpan
-d1
-c2\stopTrillSpan
-r2
+@lilypond[verbatim,quote]
+\relative {
+  d''1\startTrillSpan
+  d1
+  c2\stopTrillSpan
+  r2
+}
 @end lilypond
 
 改行を跨ぐトリルは、次行の最初の音符の上から再開されます。
 
-@lilypond[ragged-right,verbatim,quote,relative=2]
-d1\startTrillSpan
-\break
-d1
-c2\stopTrillSpan
-r2
+@lilypond[ragged-right,verbatim,quote]
+\relative {
+  d''1\startTrillSpan
+  \break
+  d1
+  c2\stopTrillSpan
+  r2
+}
 @end lilypond
 
 連続したトリルには、明示的な @code{\stopTrillSpan} コマンドは必要ありません。@c
 なぜなら、自動的に次のトリルが前のトリルの右端となるからです。
 
-@lilypond[verbatim,quote,relative=2]
-d1\startTrillSpan
-d1
-b1\startTrillSpan
-d2\stopTrillSpan
-r2
+@lilypond[verbatim,quote]
+\relative {
+  d''1\startTrillSpan
+  d1
+  b1\startTrillSpan
+  d2\stopTrillSpan
+  r2
+}
 @end lilypond
 
 トリルを装飾小音符と組み合わせることもできます。@c
 この組み合わせの構文と装飾小音符を正確に配置する方法については、@c
 @ref{装飾小音符} で説明しています。
 
-@lilypond[verbatim,quote,relative=2]
-d1~\afterGrace
-d1\startTrillSpan { c32[ d]\stopTrillSpan }
-c2 r2
+@lilypond[verbatim,quote]
+\relative {
+  d''1~\afterGrace
+  d1\startTrillSpan { c32[ d]\stopTrillSpan }
+  c2 r2
+}
 @end lilypond
 
 @cindex pitched trills (ピッチを持つトリル)
 @cindex trills, pitched (ピッチを持つトリル)
 @funindex \pitchedTrill
-@funindex pitchedTrill
 
 明示的なピッチを持つ予備の音符を必要とするトリルは
 @code{\pitchedTrill} コマンドを用いて譜刻することができます。@c
 最初の引数は主音符です。2 番目の引数は @emph{トリル} の音符であり、@c
 括弧で囲まれた符幹を持たない符頭として譜刻されます。
 
-@lilypond[verbatim,quote,relative=2]
-\pitchedTrill
-d2\startTrillSpan fis
-d2
-c2\stopTrillSpan
-r2
+@lilypond[verbatim,quote]
+\relative {
+  \pitchedTrill
+  d''2\startTrillSpan fis
+  d2
+  c2\stopTrillSpan
+  r2
+}
 @end lilypond
 
 @c 未訳