]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/ja/usage/lilypond-book.itely
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / Documentation / ja / usage / lilypond-book.itely
index a1f5106dc42f39b17b5faf6994137b07052cf56b..41f141d5ad8d54b476ab4dfb9afe0314755d7020 100644 (file)
@@ -1,14 +1,14 @@
 @c -*- coding: utf-8; mode: texinfo; documentlanguage: ja -*-
 
 @ignore
-    Translation of GIT committish: cc3b9e1430f4cc9c54da7252e504f3d274a7ea17
+    Translation of GIT committish: c1b0482f63f881bd3f67845e5f76a3e04675ef2a
 
     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
 
-@c \version "2.16.0"
+@c \version "2.19.22"
 
 @c Translators: Yoshiki Sawada
 
@@ -94,8 +94,8 @@ Windows や Mac OS X のコマンド ラインを用いて @code{lilypond-book}
 例えば、以下のように:
 
 \begin{lilypond}
-\relative c' {
-  c2 e2 \times 2/3 { f8 a b } a2 e4
+\relative {
+  c'2 e2 \tuplet 3/2 { f8 a b } a2 e4
 }
 \end{lilypond}
 
@@ -156,8 +156,8 @@ Texinfo で処理されるため、上記の例とはレイアウトが少し異
 例えば、以下のように:
 
 @lilypond
-\relative c' {
-  c2 e2 \times 2/3 { f8 a b } a2 e4
+\relative {
+  c'2 e2 \tuplet 3/2 { f8 a b } a2 e4
 }
 @end lilypond
 
@@ -181,14 +181,15 @@ c'4 f16
     title = "A scale in LilyPond"
   }
 
-  \relative c' {
-    c d e f g a b c
+  \relative {
+    c' d e f g a b c
   }
 }
 @end lilypond
 
 @page
 
+
 @node 楽譜とテキストを統合する
 @section 楽譜とテキストを統合する
 @translationof Integrating music and text
@@ -793,8 +794,8 @@ LilyPond コマンドの引数をそのまま出力ファイルにコピーし
 つまり、
 
 @example
-\relative c' @{ % begin verbatim
-  c4 e2 g4
+\relative @{ % begin verbatim
+  c'4 e2 g4
   f2 e % end verbatim
 @}
 @end example
@@ -1164,6 +1165,7 @@ LilyPond ブロックの最初の @code{\score} だけが処理されます。
 そうしないと、@qq{Output would overwrite input file} のようなエラー
 メッセージが表示されて、終了します。
 
+
 @node lilypond-book テンプレート
 @section lilypond-book テンプレート
 @translationof lilypond-book templates
@@ -1184,8 +1186,8 @@ LilyPond 断片を LaTex ドキュメントに組み込むことができます
 通常の LaTeX テキスト。
 
 \begin@{lilypond@}
-\relative c'' @{
-  a4 b c d
+\relative @{
+  a'4 b c d
 @}
 \end@{lilypond@}
 
@@ -1206,12 +1208,11 @@ LilyPond 断片を Texinfo に組み込むことができます。@c
 \input texinfo @c -*-texinfo-*-
 @@node Top
 @@top
-@translationof Top
 
 Texinfo テキスト
 
 @@lilypond
-\relative c' @{
+\relative @{
   a4 b c d
 @}
 @@end lilypond
@@ -1239,8 +1240,8 @@ d4 c b a
 以下のように、lilypond-book 用のドキュメントには自由に楽譜と
 テキストを組み合わせることができます。
 <lilypond>
-\relative c'' @{
-  a4 b c d
+\relative @{
+  a'4 b c d
 @}
 </lilypond>
 </p>
@@ -1344,7 +1345,7 @@ unterst__tzt werden.
                (format #f "~a, section, 1, @{~a@}, ~a" page text label))))
              (formatted-toc-items (map format-line (toc-items)))
              (whole-string (string-join formatted-toc-items ",\n"))
-             (output-name (ly:parser-output-name parser))
+             (output-name (ly:parser-output-name))
              (outfilename (format "~a.toc" output-name))
              (outfile (open-output-file outfilename)))
         (if (output-port? outfile)
@@ -1424,4 +1425,4 @@ LaTeX ファイルのヘッダ中に以下を記述します:
 @translationof Alternative methods of mixing text and music
 
 @command{lilypond-book} を使わずにテキストと楽譜を組み合わせる方法を
-@ref{LilyPond output in other programs} で説明しています。.
+@ref{LilyPond output in other programs} で説明しています。