]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/ja/notation/text.itely
Issue 4598 / 2: NR: Change example's font name
[lilypond.git] / Documentation / ja / notation / text.itely
index 2c41b04fc3b240415d99e90e73a4d668227fbbed..02f80edc3fa24ba609b756e139a9622632d4311f 100644 (file)
@@ -1,12 +1,14 @@
-@c -*- coding: utf-8; mode: texinfo; -*-
+@c -*- coding: utf-8; mode: texinfo; documentlanguage: ja -*-
+
 @ignore
-    Translation of GIT committish: a35594af4584e56f6dffe15371eeca10449d1a44
+    Translation of GIT committish: c1b0482f63f881bd3f67845e5f76a3e04675ef2a
 
     When revising a translation, copy the HEAD committish of the
-    version that you are working on.  See TRANSLATION for details.
+    version that you are working on.  For details, see the Contributors'
+    Guide, node Updating translation committishes..
 @end ignore
 
-@c \version "2.13.36"
+@c \version "2.19.21"
 
 
 @c Translators: Yoshiki Sawada
@@ -68,8 +70,8 @@
 そのような指示は、@ref{Direction and placement} で説明する構文を用いて、@c
 手動で譜の上または下に配置することができます。
 
-@lilypond[quote,verbatim,relative=2]
-a8^"pizz." g f e a4-"scherz." f
+@lilypond[quote,verbatim]
+\relative { a'8^"pizz." g f e a4-"scherz." f }
 @end lilypond
 
 この構文は実際には短縮記法です。@c
@@ -77,9 +79,10 @@ a8^"pizz." g f e a4-"scherz." f
 @code{\markup} ブロックを用いて明示的に、@c
 より複雑なテキスト フォーマットを音符に付け加えることができます。
 
-@lilypond[quote,verbatim,relative=2]
-a8^\markup { \italic pizz. } g f e
-a4_\markup { \tiny scherz. \bold molto } f
+@lilypond[quote,verbatim]
+\relative {
+  a'8^\markup { \italic pizz. } g f e
+  a4_\markup { \tiny scherz. \bold molto } f }
 @end lilypond
 
 デフォルトでは、テキスト指示は音符の間隔に影響を与えません。@c
@@ -87,10 +90,12 @@ a4_\markup { \tiny scherz. \bold molto } f
 以下の例では、最初のテキスト文字列は音符の間隔に影響を与えていませんが、@c
 2 番目のテキスト文字列は影響を与えています。
 
-@lilypond[quote,verbatim,relative=2]
-a8^"pizz." g f e
-\textLengthOn
-a4_"scherzando" f
+@lilypond[quote,verbatim]
+\relative {
+  a'8^"pizz." g f e
+  \textLengthOn
+  a4_"scherzando" f
+}
 @end lilypond
 
 テキスト スクリプトだけでなく、@c
@@ -114,7 +119,6 @@ a4_"scherzando" f
 学習マニュアル:
 @rlearning{オブジェクトの配置}
 
-
 記譜法リファレンス:
 @ref{テキストをフォーマットする},
 @ref{Direction and placement},
@@ -126,20 +130,18 @@ a4_"scherzando" f
 内部リファレンス:
 @rinternals{TextScript}
 
-
 @cindex text outside margin (マージンからはみ出すテキスト)
 @cindex margin, text running over (マージンからはみ出すテキスト)
 @cindex text, keeping inside margin (テキストをマージン内に収める)
 @cindex lyrics, keeping inside margin (歌詞をマージン内に収める)
 
-
 @knownissues
 テキスト スクリプトと歌詞がマージンに収まることを保証するためのチェックは@c
 計算量を増やします。@c
 処理速度を上げる必要がある場合は、以下を用います:
 
 @example
-\override Score.PaperColumn #'keep-inside-line = ##f
+\override Score.PaperColumn.keep-inside-line = ##f
 @end example
 
 
@@ -157,10 +159,12 @@ a4_"scherzando" f
 以下の構文を用いることで、@c
 ある音符から他の音符までの範囲に作成することができます:
 
-@lilypond[verbatim,quote,relative=2]
-\override TextSpanner #'(bound-details left text) = "rit."
-b1\startTextSpan
-e,\stopTextSpan
+@lilypond[verbatim,quote]
+\relative {
+  \override TextSpanner.bound-details.left.text = "rit."
+  b'1\startTextSpan
+  e,\stopTextSpan
+}
 @end lilypond
 
 @noindent
@@ -169,11 +173,13 @@ e,\stopTextSpan
 しかしながら、@ref{テキストをフォーマットする} で記述されているように、@c
 @code{\markup} ブロックを用いることで他の書体にすることができます。
 
-@lilypond[quote,relative=2,verbatim]
-\override TextSpanner #'(bound-details left text) =
-  \markup { \upright "rit." }
-b1\startTextSpan c
-e,\stopTextSpan
+@lilypond[quote,verbatim]
+\relative {
+  \override TextSpanner.bound-details.left.text =
+    \markup { \upright "rit." }
+  b'1\startTextSpan c
+  e,\stopTextSpan
+}
 @end lilypond
 
 テキスト文字列と同様に、@c
@@ -199,13 +205,12 @@ LilyPond が処理できるテキスト スパナは 1 ボイスにつき、1 
 
 @snippets
 
-@lilypondfile[verbatim,lilyquote,texidoc,doctitle]
+@lilypondfile[verbatim,quote,texidoc,doctitle]
 {dynamics-text-spanner-postfix.ly}
 
-@lilypondfile[verbatim,lilyquote,texidoc,doctitle]
+@lilypondfile[verbatim,quote,texidoc,doctitle]
 {dynamics-custom-text-spanner-postfix.ly}
 
-
 @seealso
 記譜法リファレンス:
 @ref{Line styles},
@@ -244,10 +249,12 @@ LilyPond が処理できるテキスト スパナは 1 ボイスにつき、1 
 @c \mark needs to be placed on a separate line (it's not
 @c attached to an object like \markup is). -vv
 
-@lilypond[verbatim,quote,relative=2]
-c4
-\mark "Allegro"
-c c c
+@lilypond[verbatim,quote]
+\relative {
+  c''4
+  \mark "Allegro"
+  c c c
+}
 @end lilypond
 
 この構文を用いることで、@c
@@ -256,11 +263,13 @@ c c c
 @code{\markup} ブロックを用いてより複雑なテキスト フォーマットを@c
 付け加えることもできます:
 
-@lilypond[quote,verbatim,relative=1]
-<c e>1
-\mark \markup { \italic { colla parte } }
-<d f>2 <e g>
-<c f aes>1
+@lilypond[quote,verbatim]
+\relative {
+  <c' e>1
+  \mark \markup { \italic { colla parte } }
+  <d f>2 <e g>
+  <c f aes>1
+}
 @end lilypond
 
 @noindent
@@ -268,10 +277,12 @@ c c c
 この構文で適切なシンボル名を指定することによって、@c
 特殊な記号 -- コーダ、セーニョ、フェルマータなど -- を譜刻することが可能です:
 
-@lilypond[quote,verbatim,relative=2]
-<bes f>2 <aes d>
-\mark \markup { \musicglyph #"scripts.ufermata" }
-<e g>1
+@lilypond[quote,verbatim]
+\relative {
+  <bes' f>2 <aes d>
+  \mark \markup { \musicglyph #"scripts.ufermata" }
+  <e g>1
+}
 @end lilypond
 
 @noindent
@@ -291,16 +302,12 @@ c  c
 
 @snippets
 
-@lilypondfile[verbatim,lilyquote,ragged-right,texidoc,doctitle]
+@lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
 {printing-marks-at-the-end-of-a-line.ly}
 
-@lilypondfile[verbatim,lilyquote,ragged-right,texidoc,doctitle]
-{aligning-marks-with-various-notation-objects.ly}
-
-@lilypondfile[verbatim,lilyquote,ragged-right,texidoc,doctitle]
+@lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
 {printing-marks-on-every-staff.ly}
 
-
 @seealso
 記譜法リファレンス:
 @ref{リハーサル記号},
@@ -369,18 +376,17 @@ c  c
 
 @funindex \markup
 @funindex markup
-@funindex \markuplines
-@funindex markuplines
+@funindex \markuplist
+@funindex markuplist
 
 @predefined
 @code{\markup},
-@code{\markuplines}
+@code{\markuplist}
 @endpredefined
 
-
 @snippets
 
-@lilypondfile[verbatim,lilyquote,ragged-right,texidoc,doctitle]
+@lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
 {stand-alone-two-column-markup.ly}
 
 @seealso
@@ -471,10 +477,12 @@ c
 ダブル クォーテーション自体は、@c
 それ自体の前にバックスラッシュを置くことによって譜刻されます。
 
-@lilypond[quote,verbatim,relative=2]
-a1^"\italic markup..."
-a_\markup { \italic "... prints \"italic\" letters!" }
-a a
+@lilypond[quote,verbatim]
+\relative {
+  a'1^"\italic markup..."
+  a_\markup { \italic "... prints \"italic\" letters!" }
+  a a
+}
 @end lilypond
 
 表記をばらばらなものとして扱うには、@c
@@ -487,11 +495,13 @@ a a
 以下の例では、@c
 2 番目の @code{\markup} 表記は 1 番目の表記と同じように扱われています:
 
-@lilypond[quote,verbatim,relative=2]
-c1^\markup { \center-column { a bbb c } }
-c1^\markup { \center-column { a { bbb c } } }
-c1^\markup { \center-column { a \line { bbb c } } }
-c1^\markup { \center-column { a "bbb c" } }
+@lilypond[quote,verbatim]
+\relative c'' {
+  c1^\markup { \center-column { a bbb c } }
+  c1^\markup { \center-column { a { bbb c } } }
+  c1^\markup { \center-column { a \line { bbb c } } }
+  c1^\markup { \center-column { a "bbb c" } }
+}
 @end lilypond
 
 マークアップを変数に格納することができます。@c
@@ -506,22 +516,19 @@ allegro = \markup { \bold \large Allegro }
 }
 @end lilypond
 
-
 @noindent
 @ref{Text markup commands} に
 @code{\markup} 特有のコマンドの徹底したリストがあります。
 
-
 @seealso
 記譜法リファレンス:
 @ref{Text markup commands}
 
-コード断片集:
-@rlsr{Text}
-
 インストールされているファイル:
 @file{scm/markup.scm}
 
+コード断片集:
+@rlsr{Text}
 
 @knownissues
 マークアップ モードの構文エラーは混乱しやすいです。
@@ -557,6 +564,7 @@ f1 d2 r
 @cindex font size (フォント サイズ)
 @cindex text size (テキスト サイズ)
 
+@funindex \abs-fontsize
 @funindex \fontsize
 @funindex fontsize
 @funindex \smaller
@@ -566,38 +574,48 @@ f1 d2 r
 @funindex \magnify
 @funindex magnify
 
-文字のサイズもいくつかの方法で変更することができます:
-@itemize
-@item
-フォント サイズをあらかじめ定義されている標準サイズに設定することができます。
+フォント サイズをいくつかの方法でグローバル譜サイズとの相対値で変更することができます。
 
-@item
-フォント サイズを絶対値で設定することができます。
+フォント サイズをあらかじめ定義されているサイズに設定することができます:
 
-@item
-さらに、フォント サイズを現在の値からの相対値で設定することができます。
-@end itemize
+@lilypond[quote,verbatim]
+\relative b' {
+  b1_\markup { \huge Sinfonia }
+  b1^\markup { \teeny da }
+  b1-\markup { \normalsize camera }
+}
+@end lilypond
 
-@noindent
-以下の例は、これら 3 つの方法の使用例です:
+フォント サイズを前の値との相対関係で設定することができます:
 
-@lilypond[quote,verbatim,relative=1]
-f1_\markup {
-  \tiny espressivo
-  \large e
-  \normalsize intenso
+@lilypond[quote,verbatim]
+\relative b' {
+  b1_\markup { \larger Sinfonia }
+  b1^\markup { \smaller da }
+  b1-\markup { \magnify #0.6  camera }
 }
-a^\markup {
-  \fontsize #5 Sinfonia
-  \fontsize #2 da
-  \fontsize #3 camera
+@end lilypond
+
+フォント サイズをグローバル譜サイズによって設定されている値で拡大あるいは縮小させる@c
+ことができます:
+
+@lilypond[quote,verbatim]
+\relative b' {
+  b1_\markup { \fontsize #-2 Sinfonia }
+  b1^\markup { \fontsize #1 da }
+  b1-\markup { \fontsize #3 camera }
 }
-bes^\markup { (con
-  \larger grande
-  \smaller emozione
-  \magnify #0.6 { e sentimento } )
+@end lilypond
+
+さらに、フォント サイズをグローバル譜サイズとは無関係に、固定ポイント サイズに設定する@c
+ことができます:
+
+@lilypond[quote,verbatim]
+\relative b' {
+  b1_\markup { \abs-fontsize #20 Sinfonia }
+  b1^\markup { \abs-fontsize #8 da }
+  b1-\markup { \abs-fontsize #14 camera }
 }
-d c2 r8 c bes a g1
 @end lilypond
 
 @cindex subscript (下付き文字)
@@ -607,6 +625,8 @@ d c2 r8 c bes a g1
 @funindex super
 @funindex \sub
 @funindex sub
+@funindex \normal-size-super
+@funindex normal-size-super
 
 テキストを下付き文字あるいは上付き文字として譜刻することができます。@c
 デフォルトでは、それらは小さなサイズで譜刻されますが、@c
@@ -692,7 +712,6 @@ d c2 r8 c bes a g1
 @funindex \larger
 @funindex larger
 
-
 @predefined
 @code{\teeny},
 @code{\tiny},
@@ -704,7 +723,6 @@ d c2 r8 c bes a g1
 @code{\larger}
 @endpredefined
 
-
 @seealso
 記譜法リファレンス:
 @ref{フォント},
@@ -712,15 +730,15 @@ d c2 r8 c bes a g1
 @ref{手動の繰り返し記号},
 @ref{フォント}
 
+インストールされているファイル:
+@file{scm/define-markup-commands.scm}
+
 コード断片集:
 @rlsr{Text}
 
 内部リファレンス:
 @rinternals{TextScript}
 
-インストールされているファイル:
-@file{scm/define-markup-commands.scm}
-
 @knownissues
 フォントのサイズ コマンド @code{\teeny}, @code{\tiny}, @code{\small},
 @code{\normalsize}, @code{\large} それに @code{\huge} を用いると、@c
@@ -761,14 +779,16 @@ d c2 r8 c bes a g1
 以下の例では、@c
 最初のマークアップと 2 番目のマークアップの揃えられ方はまったく同じです。
 
-@lilypond[quote,verbatim,relative=2]
-d1-\markup { poco }
-f
-d-\markup { \left-align poco }
-f
-d-\markup { \center-align { poco } }
-f
-d-\markup { \right-align poco }
+@lilypond[quote,verbatim]
+\relative {
+  d''1-\markup { poco }
+  f
+  d-\markup { \left-align poco }
+  f
+  d-\markup { \center-align { poco } }
+  f
+  d-\markup { \right-align poco }
+}
 @end lilypond
 
 @funindex \halign
@@ -776,14 +796,16 @@ d-\markup { \right-align poco }
 
 水平方向の揃え方は、数値を使って、微調整することができます:
 
-@lilypond[quote,verbatim,relative=2]
-a1-\markup { \halign #-1 poco }
-e'
-a,-\markup { \halign #0 poco }
-e'
-a,-\markup { \halign #0.5 poco }
-e'
-a,-\markup { \halign #2 poco }
+@lilypond[quote,verbatim]
+\relative {
+  a'1-\markup { \halign #-1 poco }
+  e'
+  a,-\markup { \halign #0 poco }
+  e'
+  a,-\markup { \halign #0.5 poco }
+  e'
+  a,-\markup { \halign #2 poco }
+}
 @end lilypond
 
 @noindent
@@ -814,21 +836,23 @@ a,-\markup { \halign #2 poco }
 以下の例では 2 つのケースを示しています。@c
 最後のマークアップはアンカ ポイントを持たず、それゆえ移動されません。
 
-@lilypond[quote,verbatim,relative=1]
-d2^\markup {
-  Acte I
-  \raise #2 { Scène 1 }
-}
-a'
-g_\markup {
-  \null
-  \lower #4 \bold { Très modéré }
-}
-a
-d,^\markup {
-  \raise #4 \italic { Une forêt. }
+@lilypond[quote,verbatim]
+\relative {
+  d'2^\markup {
+    Acte I
+    \raise #2 { Scène 1 }
+  }
+  a'
+  g_\markup {
+    \null
+    \lower #4 \bold { Très modéré }
+  }
+  a
+  d,^\markup {
+    \raise #4 \italic { Une forêt. }
+  }
+  a'4 a g2 a
 }
-a'4 a g2 a
 @end lilypond
 
 @funindex \general-align
@@ -843,22 +867,24 @@ a'4 a g2 a
 そのようなコマンドで移動させるオブジェクトの前には@c
 アンカ ポイントを置く必要があります:
 
-@lilypond[quote,verbatim,relative=1]
-d2^\markup {
-  Acte I
-  \translate #'(-1 . 2) "Scène 1"
-}
-a'
-g_\markup {
-  \null
-  \general-align #Y #3.2 \bold "Très modéré"
-}
-a
-d,^\markup {
-  \null
-  \translate-scaled #'(-1 . 2) \teeny "Une forêt."
+@lilypond[quote,verbatim]
+\relative {
+  d'2^\markup {
+    Acte I
+    \translate #'(-1 . 2) "Scène 1"
+  }
+  a'
+  g_\markup {
+    \null
+    \general-align #Y #3.2 \bold "Très modéré"
+  }
+  a
+  d,^\markup {
+    \null
+    \translate-scaled #'(-1 . 2) \teeny "Une forêt."
+  }
+  a'4 a g2 a
 }
-a'4 a g2 a
 @end lilypond
 
 @cindex multi-line markup (複数行にわたるマークアップ)
@@ -970,7 +996,6 @@ a'4 a g2 a
 
 @ref{Align} にテキスト揃えコマンドの徹底したリストがあります。
 
-
 @seealso
 学習マニュアル:
 @rlearning{オブジェクトを移動させる}
@@ -979,15 +1004,15 @@ a'4 a g2 a
 @ref{Align},
 @ref{テキスト マーク}
 
+インストールされているファイル:
+@file{scm/define-markup-commands.scm}.
+
 コード断片集:
 @rlsr{Text}
 
 内部リファレンス:
 @rinternals{TextScript}
 
-インストールされているファイル:
-@file{scm/define-markup-commands.scm}.
-
 
 @node マークアップ内部でのグラフィック記譜法
 @unnumberedsubsubsec マークアップ内部でのグラフィック記譜法
@@ -1137,8 +1162,8 @@ Flute quartet keeps very uneven time."
 このような機能を使う場合、以下で示すように、@c
 描画サイズを明示的に指定することを推奨します:
 
-@lilypond[quote,verbatim,relative=1]
-c1^\markup {
+@lilypond[quote,verbatim,fragment]
+c'1^\markup {
   \combine
     \epsfile #X #10 #"./context-example.eps"
     \with-dimensions #'(0 . 6) #'(0 . 10)
@@ -1154,28 +1179,27 @@ c1^\markup {
       closepath
       stroke"
   }
-c
+c'
 @end lilypond
 
 @ref{Graphic} にグラフィック特有のコマンドの徹底したリストがあります。
 
-
 @seealso
 記譜法リファレンス:
 @ref{Graphic},
 @ref{編集者の注釈},
 @ref{Align}
 
+インストールされているファイル:
+@file{scm/define-markup-commands.scm},
+@file{scm/stencil.scm}
+
 コード断片集:
 @rlsr{Text}
 
 内部リファレンス:
 @rinternals{TextScript}
 
-インストールされているファイル:
-@file{scm/define-markup-commands.scm},
-@file{scm/stencil.scm}
-
 
 @node マークアップ内部での音楽記譜法
 @unnumberedsubsubsec マークアップ内部での音楽記譜法
 
 音符と臨時記号はマークアップ コマンドを用いて入力することができます:
 
-@lilypond[quote,verbatim,relative=2]
-a2 a^\markup {
+@lilypond[quote,verbatim,fragment]
+a'2 a'^\markup {
   \note #"4" #1
   =
   \note-by-number #1 #1 #1.5
 }
-b1_\markup {
+b'1_\markup {
   \natural \semiflat \flat
   \sesquiflat \doubleflat
 }
 \glissando
-a1_\markup {
+a'1_\markup {
   \natural \semisharp \sharp
   \sesquisharp \doublesharp
 }
-\glissando b
+\glissando b'
 @end lilypond
 
 他の記譜オブジェクトもマークアップ モードの中で譜刻することができます:
 
-@lilypond[quote,verbatim,relative=1]
-g1 bes
-ees-\markup {
-  \finger 4
-  \tied-lyric #"~"
-  \finger 1
-}
-fis_\markup { \dynamic rf }
-bes^\markup {
-  \beam #8 #0.1 #0.5
-}
-cis
-d-\markup {
-  \markalphabet #8
-  \markletter #8
+@lilypond[quote,verbatim]
+\relative {
+  g1 bes
+  ees\finger \markup \tied-lyric #"4~1"
+  fis_\markup { \dynamic rf }
+  bes^\markup {
+    \beam #8 #0.1 #0.5
+  }
+  cis
+  d-\markup {
+    \markalphabet #8
+    \markletter #8
+  }
 }
 @end lilypond
 
@@ -1234,13 +1256,15 @@ d-\markup {
 @ref{The Feta font} に、@c
 音楽シンボルと音楽シンボル名の徹底したリストがあります。
 
-@lilypond[quote,verbatim,relative=2]
-c2
-c'^\markup { \musicglyph #"eight" }
-c,4
-c,8._\markup { \musicglyph #"clefs.G_change" }
-c16
-c2^\markup { \musicglyph #"timesig.neomensural94" }
+@lilypond[quote,verbatim]
+\relative {
+  c''2
+  c'^\markup { \musicglyph #"eight" }
+  c,4
+  c,8._\markup { \musicglyph #"clefs.G_change" }
+  c16
+  c2^\markup { \musicglyph #"timesig.neomensural94" }
+}
 @end lilypond
 
 @noindent
@@ -1250,20 +1274,22 @@ c2^\markup { \musicglyph #"timesig.neomensural94" }
 
 さらに、マークアップ モードは特定の楽器のためのダイアグラムをサポートします:
 
-@lilypond[quote,verbatim,relative=2]
-c1^\markup {
-  \fret-diagram-terse #"x;x;o;2;3;2;"
-}
-c^\markup {
-  \harp-pedal #"^-v|--ov^"
-}
-c
-c^\markup {
-  \combine
-    \musicglyph #"accordion.discant"
+@lilypond[quote,verbatim]
+\relative {
+  c''1^\markup {
+    \fret-diagram-terse #"x;x;o;2;3;2;"
+  }
+  c^\markup {
+    \harp-pedal #"^-v|--ov^"
+  }
+  c
+  c^\markup {
     \combine
-      \raise #0.5 \musicglyph #"accordion.dot"
-      \raise #1.5 \musicglyph #"accordion.dot"
+      \musicglyph #"accordion.discant"
+      \combine
+       \raise #0.5 \musicglyph #"accordion.dot"
+       \raise #1.5 \musicglyph #"accordion.dot"
+  }
 }
 @end lilypond
 
@@ -1281,37 +1307,38 @@ c^\markup {
 ネストされる @code{\score} ブロックには
 @code{\layout} ブロックを含める必要があります:
 
-@lilypond[quote,verbatim,relative=1]
-c4 d^\markup {
-  \score {
-    \relative c' { c4 d e f }
-    \layout { }
+@lilypond[quote,verbatim]
+\relative {
+  c'4 d^\markup {
+    \score {
+      \relative { c'4 d e f }
+      \layout { }
+    }
   }
+  e f |
+  c d e f
 }
-e f |
-c d e f
 @end lilypond
 
 @ref{Music} に、音楽記譜法関連のコマンドの徹底したリストがあります。
 
-
 @seealso
 記譜法リファレンス:
 @ref{Music},
 @ref{The Feta font},
 @ref{フォントの説明}
 
+インストールされているファイル:
+@file{scm/define-markup-commands.scm},
+@file{scm/fret-diagrams.scm},
+@file{scm/harp-pedals.scm}
+
 コード断片集:
 @rlsr{Text}
 
 内部リファレンス:
 @rinternals{TextScript}
 
-インストールされているファイル:
-@file{scm/define-markup-commands.scm},
-@file{scm/fret-diagrams.scm},
-@file{scm/harp-pedals.scm}.
-
 
 @node 複数ページにわたるマークアップ
 @unnumberedsubsubsec 複数ページにわたるマークアップ
@@ -1322,8 +1349,8 @@ c d e f
 @cindex markup text, multi-page (複数ページにわたるマークアップ テキスト)
 @cindex text spread over multiple pages (複数ページに広がるテキスト)
 
-@funindex \markuplines
-@funindex markuplines
+@funindex \markuplist
+@funindex markuplist
 @funindex \justified-lines
 @funindex justified-lines
 @funindex \wordwrap-lines
@@ -1335,7 +1362,7 @@ c d e f
 
 @c KEEP LY
 @lilypond[quote,verbatim]
-\markuplines {
+\markuplist {
   \justified-lines {
     両端揃えされた非常に長いテキスト。
     ...
@@ -1362,31 +1389,29 @@ c d e f
 @ref{Text markup list commands} に、@c
 マークアップ リスト コマンドの徹底したリストがあります。
 
-
 @seealso
 記譜法リファレンス:
-@ref{Text markup list commands},
-
-コード断片集:
-@rlsr{Text}
+@ref{Text markup list commands}
 
 拡張:
 @rextend{New markup list command definition}
 
+インストールされているファイル:
+@file{scm/define-markup-commands.scm}
+
+コード断片集:
+@rlsr{Text}
+
 内部リファレンス:
 @rinternals{TextScript}
 
-インストールされているファイル:
-@file{scm/define-markup-commands.scm}.
-
-@funindex \markuplines
-@funindex markuplines
+@funindex \markuplist
+@funindex markuplist
 
 @predefined
-@code{\markuplines}
+@code{\markuplist}
 @endpredefined
 
-
 @node フォント
 @subsection フォント
 @translationof Fonts
@@ -1422,8 +1447,8 @@ FontConfig はシステムで利用可能なフォントを検出するために
 さまざまな LilyPond @code{feta} 非テキスト フォントを@c
 マークアップ モードの中で直接使用することが可能になります:
 
-@lilypond[quote,verbatim,relative=2]
-a1^\markup {
+@lilypond[quote,verbatim,fragment]
+a'1^\markup {
   \vcenter {
     \override #'(font-encoding . fetaBraces)
     \lookup #"brace120"
@@ -1462,14 +1487,14 @@ a1^\markup {
 デフォルト サイズから変更する場合、@c
 @code{font-size} に提供する値が必要となります。
 
-@lilypond[quote,verbatim,relative=2]
-\override Score.RehearsalMark #'font-family = #'typewriter
+@lilypond[quote,verbatim,fragment]
+\override Score.RehearsalMark.font-family = #'typewriter
 \mark \markup "Ouverture"
-\override Voice.TextScript #'font-shape = #'italic
-\override Voice.TextScript #'font-series = #'bold
-d2.^\markup "Allegro"
-\override Voice.TextScript #'font-size = #-3
-c4^smaller
+\override Voice.TextScript.font-shape = #'italic
+\override Voice.TextScript.font-series = #'bold
+d''2.^\markup "Allegro"
+\override Voice.TextScript.font-size = #-3
+c''4^smaller
 @end lilypond
 
 @noindent
@@ -1505,7 +1530,6 @@ c4^smaller
 他のフォントを使用する方法は以下のセクションで説明されています:
 @ref{個々に登録するフォント} と @ref{ドキュメント全体のフォント}。
 
-
 @seealso
 記譜法リファレンス:
 @ref{The Feta font},
@@ -1524,14 +1548,14 @@ c4^smaller
 FontConfig に認識されている任意のフォントを@c
 楽譜の中で使用することができます:
 
-@lilypond[quote,verbatim,relative=2]
-\override Staff.TimeSignature #'font-name = #"Bitstream Charter"
-\override Staff.TimeSignature #'font-size = #2
+@lilypond[quote,verbatim,fragment]
+\override Staff.TimeSignature.font-name = #"Bitstream Charter"
+\override Staff.TimeSignature.font-size = #2
 \time 3/4
 
-a1_\markup {
-  \override #'(font-name . "Vera Bold")
-    { Vera Bold }
+a'1_\markup {
+  \override #'(font-name . "Bitstream Vera Sans,sans-serif, Oblique Bold")
+    { Vera Oblique Bold }
 }
 @end lilypond
 
@@ -1549,7 +1573,6 @@ a1_\markup {
 lilypond -dshow-available-fonts x
 @end example
 
-
 @seealso
 記譜法リファレンス:
 @ref{フォントの説明},
@@ -1570,6 +1593,8 @@ lilypond -dshow-available-fonts x
 以下の例で示す方法に従ってフォント ファミリを指定することにより、@c
 @emph{roman}, @emph{sans} それに @emph{typewriter} フォント ファミリ@c
 として使用されるデフォルト フォントを変更することができます。@c
+この例ではグローバル譜サイズにセットされた値で自動的にフォントのサイズを@c
+伸縮しています。@c
 フォントについての説明は、@ref{フォントの説明} を参照してください。
 
 @cindex font families, setting (フォント ファミリを設定する)
@@ -1579,12 +1604,11 @@ lilypond -dshow-available-fonts x
 
 @lilypond[verbatim,quote]
 \paper  {
-  myStaffSize = #20
   #(define fonts
     (make-pango-font-tree "Times New Roman"
-                          "Nimbus Sans"
+                          "Nimbus Sans,Nimbus Sans L"
                           "Luxi Mono"
-                           (/ myStaffSize 20)))
+                          (/ staff-height pt 20)))
 }
 
 \relative c'{
@@ -1598,7 +1622,6 @@ lilypond -dshow-available-fonts x
 @c we don't do Helvetica / Courier, since GS incorrectly loads
 @c Apple TTF fonts
 
-
 @seealso
 記譜法リファレンス:
 @ref{フォントの説明},