]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/ja/learning/introduction.itely
Web-zh: fix menu.
[lilypond.git] / Documentation / ja / learning / introduction.itely
1 @c -*- coding: utf-8; mode: texinfo; documentlanguage: ja -*-
2
3 @ignore
4     Translation of GIT committish: 9a65042d49324f2e3dff18c4b0858def81232eea
5
6     When revising a translation, copy the HEAD committish of the
7     version that you are working on.  For details, see the Contributors'
8     Guide, node Updating translation committishes..
9 @end ignore
10
11 @c \version "2.13.36"
12
13 @ignore
14 Tutorial guidelines:  (different from policy.txt!)
15 - unless you have a really good reason, use either
16     @lilypond[verbatim,quote]
17   or
18     @lilypond[verbatim,quote,relative=2]
19
20   Don't use any other relative=X commands.
21
22 - use "aes" and "ees" instead of "as" and "es".  I know it's not
23   correct Dutch naming, but let's not confuse people with this
24   until we get to the Basic notation chapter.
25
26 - Add "Music Glossary: @rglos{foo}" to the *top* of the relevant
27   portions of the tutorial.
28
29 @end ignore
30
31
32 @c Translators: Yoshiki Sawada
33 @c Translation status: post-GDP
34
35
36 @node 導入部
37 @chapter 導入部
38 @translationof Introduction
39
40 この章は LilyPond に取り組むための基本的な入門書です。
41
42 @menu
43 * ファイルをコンパイルする::                    
44 * LilyPond 用エディタ::         
45 * 入力ファイルの書き方::      
46 * このマニュアルの読み方::    
47 @end menu
48
49
50 @node ファイルをコンパイルする
51 @section ファイルをコンパイルする
52 @translationof Compiling a file
53
54 FIXME: insert text
55
56 @menu
57 * 入力を作成する::    
58 * MacOS X::           
59 * Windows::           
60 * コマンド ライン::   
61 @end menu
62
63
64 @node 入力を作成する
65 @subsection 入力を作成する
66 @translationof Entering input
67
68 @cindex compiling (コンパイルする)
69 @cindex first example (最初の例)
70 @cindex example, first (最初の例)
71 @cindex case sensitive (大文字と小文字を区別する)
72
73 @qq{コンパイル} は LilyPond フォーマットで書かれた入力ファイルを印刷可能な@c
74 ファイルを作り出すため、そして (オプションとして) 演奏可能な MIDI ファイルを@c
75 作り出すために処理することを意味する用語です。@c
76 LilyPond 入力ファイルはシンプルなテキストファイルです。@c
77 最初の例ではシンプルな入力ファイルがどのようなものかを示します。
78
79 楽譜を作成するために、我々は記譜法を指定する入力ファイルを書きます。@c
80 例えば、以下のように書くと:
81
82 @example
83 @{
84   c' e' g' e'
85 @}
86 @end example
87
88 @noindent
89 結果は以下のようになります:
90
91 @c  in this case we don't want verbatim
92 @lilypond[quote]
93 {
94   c' e' g' e'
95 }
96 @end lilypond
97
98 @c !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
99 @c strong内で {} を使用しようとした場合、なぜか下記のような表記にしなければ
100 エラーが発生した
101 @c !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
102 @warning{LilyPond 入力の音符と歌詞は、
103 @strong{@code{@{}} @strong{波括弧} @strong{@code{@}}}
104 で囲まれている必要があります。@c
105 さらに、あいまいさを避けるために、波括弧は行の最初か最後でない限りは@c
106 スペースによって囲まれているべきです。@c
107 波括弧はこのマニュアルのいくつかの例では省略されているかもしれませんが、@c
108 あなた自身が作成する楽譜では忘れないでください!@c
109 マニュアルの中にある例を表示する方法についての更なる情報については、@c
110 @ref{このマニュアルの読み方} を参照してください。}
111
112 さらに、LilyPond 入力は@strong{大文字/小文字}の区別 があります。@c
113 @w{@code{@{ c d e @}}} は有効な入力ですが、@c
114 @w{@code{@{ C D E @}}} はエラーになります。
115
116 @smallspace
117
118
119 @subheading 音楽を入力して出力を閲覧する
120
121 @cindex PDF file (PDF ファイル)
122 @cindex viewing music (音楽を閲覧する)
123 @cindex text editors (テキスト エディタ)
124 @cindex running LilyPond under MacOS X (MacOS X で LilyPond を実行する)
125 @cindex MacOS X, running LilyPond (MacOS X で LilyPond を実行する)
126 @cindex running LilyPond under Windows (Windows で LilyPond を実行する)
127 @cindex Windows, running LilyPond (Windows で LilyPond を実行する)
128 @cindex running LilyPond under Unix (Unix で LilyPond を実行する)
129 @cindex Unix, running LilyPond (Unix で LilyPond を実行する)
130
131 ここでは、実行すべきコマンドと、出力を閲覧または印刷する方法について説明します。
132
133 LilyPond に対してより良いサポートを提供するテキスト エディタが@c
134 いくつかあります。@c
135 更なる情報は @ref{LilyPond 用エディタ}  を参照してください。
136
137 @warning{あなたが初めて LilyPond を実行した場合、1, 2 分かかるかもしれません。@c
138 なぜなら、まず最初にすべてのシステム フォントが分析されるからです。@c
139 それから後は、LilyPond はずっと早く実行されます!}
140
141
142 @node MacOS X
143 @subsection MacOS X
144 @translationof MacOS X
145
146 @command{LilyPond.app} をダブル クリックすると、見本となるファイルが開きます。@c
147 それを -- 例えば @file{test.ly} という名前で -- Desktop に保存し、@c
148 それをメニュー コマンド @w{@code{Compile > Typeset File}} で処理します。@c
149 結果の PDF ファイルがスクリーン上に表示されます。
150
151 この先の LilyPond の使用のために、あなたは @qq{New} または @qq{Open} を@c
152 選択することによって開始すべきです。@c
153 植字を行う (訳者: コンパイルする) 前に、あなたはあなたのファイルを@c
154 保存しなければなりません。@c
155 処理中にエラーが発生した場合、ログ ウィンドを見てください。
156
157
158 @node Windows
159 @subsection Windows
160 @translationof Windows
161
162 Windows では、デスクトップ上の LilyPond アイコンをダブル クリックした場合、@c
163 シンプルなテキスト エディタで見本ファイルが開きます。@c
164 それを -- 例えば @file{test.ly} という名前で -- デスクトップ上に保存し、@c
165 そのファイルを処理するためにそのファイルをダブル クリックします 
166 (そのファイルのアイコンはノートのような形をしています)。@c
167 数秒後、デスクトップ上に @file{test.pdf} というファイルが作成されます。@c
168 刻譜された楽譜を見るにはこの PDF ファイルをダブル クリックします。@c
169 @file{test.ly} ファイルを処理するためのもう 1 つの方法は、マウス ポインタを@c
170 使ってそのファイルを LilyPond アイコンにドラッグ&ドロップします。
171
172 既存の @file{.ly} を編集するには、そのファイルを右クリックして @qq{Edit source} 
173 を選択します。@c
174 LilyPond 入力を開始するための空ファイルを作成するには、上記と同じようにして@c
175 エディタを開き、@qq{ファイル} メニューの中にある @qq{新規作成} を使用するか、@c
176 デスクトップ上で右クリックして @qq{新規作成 ... テキスト文書} を選択して、@c
177 そのテキスト ファイルの名前を変更して、ファイル拡張子を @file{.ly} に@c
178 変更します。@c
179 LilyPond ソース コードに入力するには前述と同様にアイコンを右クリックします。
180
181 ファイルをダブル クリックすると、結果として PDF ファイルが@c
182 出力されるだけではなく、LilyPond がそのファイルに対して@c
183 行ったことについての情報を保持する @file{.log} ファイルも生成されます。@c
184 エラーが発生した場合、このファイルを検証してください。
185
186
187 @node コマンド ライン
188 @subsection コマンド ライン
189 @translationof Command-line
190
191
192 @file{test.ly} という名前のテキスト ファイルを作成し、以下を入力します:
193
194 @example
195 @{
196   c' e' g' e'
197 @}
198 @end example
199
200 @file{test.ly} を処理するには以下のようにします:
201
202 @example
203 lilypond test.ly
204 @end example
205
206 @noindent
207 以下のようなものが表示されます:
208
209 @example
210 lilypond test.ly
211 GNU LilyPond @version{}
212 Processing `test.ly'
213 Parsing...
214 Interpreting music...
215 Preprocessing graphical objects...
216 Finding the ideal number of pages...
217 Fitting music on 1 page...
218 Drawing systems...
219 Layout output to `test.ps'...
220 Converting to `test.pdf'...
221 @end example
222
223
224 @node LilyPond 用エディタ
225 @section LilyPond 用エディタ
226 @translationof Advanced editors
227
228 FIXME: add text
229
230 @menu
231 * Denemo::                      
232 * LilyPondTool::                
233 * Emacs::                       
234 * Vim::                         
235 @end menu
236
237
238 @node Denemo
239 @subsection Denemo
240 @translationof Denemo
241
242 利用可能なプラットフォーム:
243
244
245
246 @node LilyPondTool
247 @subsection LilyPondTool
248 @translationof LilyPondTool
249
250 利用可能なプラットフォーム:
251
252
253 @node Emacs
254 @subsection Emacs
255 @translationof Emacs
256
257 利用可能なプラットフォーム: Windows, MacOS X, Unix
258
259
260 @node Vim
261 @subsection Vim
262 @translationof Vim
263
264 利用可能なプラットフォーム: Windows, MacOS X, Unix
265
266
267 @node 入力ファイルの書き方
268 @section 入力ファイルの書き方
269 @translationof How to write input files
270
271 FIXME: insert text
272
273 @menu
274 * 簡単な記譜法::                  
275 * 入力ファイルに取り組む::      
276 @end menu
277
278
279 @node 簡単な記譜法
280 @subsection 簡単な記譜法
281 @translationof Simple notation
282
283 @cindex simple notation (簡単な記譜法)
284 @cindex notation, simple (簡単な記譜法)
285
286 LilyPond はいくつかの記譜要素を自動的に追加します。@c
287 次の例では、我々は 4 つのピッチを指定しただけですが、LilyPond が音部記号、@c
288 拍子記号、リズムを加えています。
289
290 @lilypond[verbatim,quote]
291 {
292   c' e' g' e'
293 }
294 @end lilypond
295
296 @noindent
297 この挙動は変更されるかもしれませんが、たいていのケースではこれらの自動値は@c
298 役に立ちます。
299
300
301 @subheading ピッチ
302 @c ピッチ
303
304 @cindex pitches (ピッチ)
305 @cindex relative mode (相対モード)
306 @cindex quote, single (シングル クォート)
307 @cindex comma (カンマ)
308 @cindex accidentals and relative mode (臨時記号と相対モード)
309 @cindex relative mode, and accidentals (臨時記号と相対モード)
310
311 @funindex \relative
312 @funindex relative
313 @funindex '
314 @funindex ,
315
316 音楽用語集: @rglos{pitch}, @rglos{interval},
317 @rglos{scale}, @rglos{middle C}, @rglos{octave},
318 @rglos{accidental}
319
320 音符を入力するための最も簡単な方法は @code{\relative} モードを@c
321 使用することです。@c
322 このモードでは、後に続く音符は常に前の音符に最も近い場所になるという@c
323 仮定によって自動的にオクターブが選択されます。@c
324 つまり、音符は前の音符から 3 譜表スペース (訳者: 1 譜表スペースとは同じ音階の@c
325 ド→レ、レ→ミ、~の間隔のこと) 以内に置かれます。@c
326 我々はまず音楽の最も基本的な要素 -- @notation{音階} (ここでは各音符は@c
327 前の音符からちょうど 1 譜表スペースの位置にきます) -- からはじめます。
328
329 @lilypond[verbatim,quote]
330 % set the starting point to middle C
331 \relative c' {
332   c d e f
333   g a b c
334 }
335 @end lilypond
336
337 最初の音符は@notation{ミドル C} です。@c
338 一連の音符はそれぞれ前の音符と最も近い場所に置かれています -- 
339 言い換えると、最初の @code{c} はミドル C に最も近い C です。@c
340 これに前の音符に最も近い D が続きます。@c
341 我々は @code{\relative} モードだけを使って@c
342 より大きな音程を持つ旋律を作ることができます:
343
344 @lilypond[verbatim,quote]
345 \relative c' {
346   d f a g
347   c b f d
348 }
349 @end lilypond
350
351 @noindent
352 旋律の最初の音符が開始ピッチを指定している音符である必要はありません。@c
353 前の例では、最初の音符 -- @code{d} -- はミドル C に最も近い D です。
354
355 @code{@w{\relative c' @{}} コマンドにクォート @code{'} やカンマ @code{,} を@c
356 付け加える (あるいは取り除く) ことによって、@c
357 開始オクターブを変更することができます:
358
359 @lilypond[verbatim,quote]
360 % one octave above middle C
361 \relative c'' {
362   e c a c
363 }
364 @end lilypond
365
366 相対モードは最初のうちは混乱を引き起こす可能性がありますが、@c
367 たいていの旋律を入力するのに最も容易な方法です。@c
368 相対計算が実際にどのように行われるのか見てみましょう。@c
369 B -- ト音記号の譜面の真ん中の譜線上にあります -- から開始すると、C, D, E は@c
370 上方向に 3 譜表スペース以内にあり、A, G, F は下方向に 3 譜表スペース以内に@c
371 あります。@c
372 そのため、B の後に続く音符が C, D, E である場合、その音符は B の上に置かれ、@c
373 A, G, F である場合は B の下に置かれます。
374
375 @lilypond[verbatim,quote]
376 \relative c'' {
377   b c  % c is 1 staff space up, so is the c above
378   b d  % d is 2 up or 5 down, so is the d above
379   b e  % e is 3 up or 4 down, so is the e above
380   b a  % a is 6 up or 1 down, so is the a below
381   b g  % g is 5 up or 2 down, so is the g below
382   b f  % f is 4 up or 3 down, so is the f below
383 }
384 @end lilypond
385
386 これらの音符のいずれかにシャープやフラットが付いたとしても@c
387 まったく同じことが起こります。@c
388 相対位置の算出時に@notation{臨時記号}は@strong{完全に無視}されます。@c
389 譜表上の他のいずれかの位置にある音符からの譜表スペース数もまったく同じです。
390
391 3 譜表スペースよりも大きな音程を加えるために、シングル クォート @code{'} 
392 (あるいはアポストロフィ) を音符名に付け加えることによって@c
393 @notation{オクターブ}を上げることができます。@c
394 音符名にカンマ @code{,} を付け加えることによってオクターブを@c
395 下げることができます。
396
397 @lilypond[verbatim,quote]
398 \relative c'' {
399   a a, c' f,
400   g g'' a,, f'
401 }
402 @end lilypond
403
404 @noindent
405 音符を 2 オクターブ (あるいはそれ以上) 変えるには、複数化した @code{''} や 
406 @code{,,} を使用します -- しかしながら、1 つのダブル クォート @code{"} 
407 ではなく、2 つのシングル クォートを使用するよう注意してください!@c
408 また、@code{@w{\relative c'}} の中の最初の値もこのように@c
409 変更されるかもしれません。
410 @c " - keeps quotes in order for context-sensitive editor -td
411
412
413 @subheading 演奏時間 (リズム)
414 @c Durations (rhythms)
415 @c 演奏時間 (原語: Durations, リズム)
416
417 @cindex note durations (音符の演奏時間)
418 @cindex durations (演奏時間)
419 @cindex rhythms (リズム)
420 @cindex whole note (全音符)
421 @cindex half note (半音符)
422 @cindex quarter note (4 分音符)
423 @cindex dotted note (付点音符)
424 @cindex notating durations (演奏時間を記譜する)
425
426 音楽用語集: @rglos{beam}, @rglos{duration},
427 @rglos{whole note}, @rglos{half note}, @rglos{quarter note},
428 @rglos{dotted note}
429 @c 連桁 (beam), 演奏時間 (duration), 全音符 (whole note), 半音符 (half note), 
430 @c 4 分音符 (quarter note), 付点音符 (dotted note)
431
432 音符の@notation{演奏時間}は音符名の後の番号によって指定されます。@c
433 @notation{全音符}には @code{1} を、@notation{半音符}には @code{2} を、@c
434 @notation{4 分音符}には @code{4} を、などです。@c
435 @notation{連桁} 
436 (符幹と符幹をつなぐ横棒。符幹は符頭から上下にでる縦棒。符頭は音符の玉) 
437 は自動的に追加されます。
438
439 あなたが演奏時間を指定しなかった場合、@c
440 前の音符の演奏時間が次の音符の演奏時間に対しても使用されます。@c
441 最初の音符のデフォルトの演奏時間は 4 分音符です。
442
443 @lilypond[verbatim,quote]
444 \relative c'' {
445   a1
446   a2 a4 a8 a
447   a16 a a a a32 a a a a64 a a a a a a a a2
448 }
449 @end lilypond
450
451 @notation{付点音符}を作成するには、@c
452 演奏時間数にドット @code{.} を付け加えます。@c
453 付点音符の演奏時間は明記されなければなりません (つまり、数字で)。
454
455 @lilypond[verbatim,quote]
456 \relative c'' {
457   a a a4. a8
458   a8. a16 a a8. a8 a4.
459 }
460 @end lilypond
461
462
463 @subheading 休符
464 @c Rests
465
466 @cindex rest (休符)
467 @cindex notating rests (休符を記譜する)
468
469 音楽用語集: @rglos{rest}
470 @c 休符 (rest)
471
472 @notation{休符}は @code{r} という名前の音符のような形で入力されます:
473
474 @lilypond[verbatim,quote]
475 \relative c'' {
476   a r r2
477   r8 a r4 r4. r8
478 }
479 @end lilypond
480
481
482 @subheading 拍子記号
483 @c Time signature
484
485 @cindex time signature (拍子記号)
486
487 @funindex \time
488 @funindex time
489
490 音楽用語集: @rglos{time signature}
491 @c 拍子記号 (time signature)
492
493 @notation{拍子記号}は @code{\time} コマンドでセットすることができます:
494
495 @lilypond[verbatim,quote]
496 \relative c'' {
497   \time 3/4
498   a4 a a
499   \time 6/8
500   a4. a
501   \time 4/4
502   a4 a a a
503 }
504 @end lilypond
505
506
507 @subheading 音部記号
508 @c Clef
509
510 @cindex clef (音部記号)
511 @cindex treble (ト音記号、高音部記号)
512 @cindex alto (アルト)
513 @cindex tenor (テナー)
514 @cindex bass (バス)
515
516 @funindex \clef
517 @funindex clef
518
519 音楽用語集: @rglos{clef}
520 @c : 音部記号 (clef)
521
522 @notation{音部記号}は @code{\clef} コマンドを使ってセットすることができます:
523
524 @lilypond[verbatim,quote]
525 \relative c' {
526   \clef treble
527   c1
528   \clef alto
529   c1
530   \clef tenor
531   c1
532   \clef bass
533   c1
534 }
535 @end lilypond
536
537
538 @subheading すべてをまとめて
539 @c All together
540
541 以上の要素をすべて集めたちょっとした例をお見せします:
542
543 @lilypond[verbatim,quote]
544 \relative c, {
545   \time 3/4
546   \clef bass
547   c2 e8 c' g'2.
548   f4 e d c4 c, r4
549 }
550 @end lilypond
551
552
553 @seealso
554 記譜法リファレンス: @ruser{Writing pitches},
555 @ruser{Writing rhythms}, @ruser{Writing rests},
556 @ruser{Time signature}, @ruser{Clef}
557 @c ピッチを書く, リズムを書く, 休符を書く, 拍子記号, 音部記号
558
559
560 @node 入力ファイルに取り組む
561 @subsection 入力ファイルに取り組む
562 @translationof Working on input files
563
564 @cindex curly braces (波括弧)
565 @cindex braces, curly (波括弧)
566 @cindex comments (コメント)
567 @cindex line comment (行コメント)
568 @cindex comment, line (行コメント)
569 @cindex block comment (ブロック コメント)
570 @cindex comment, block (ブロック コメント)
571 @cindex case sensitive (大文字と小文字を区別する)
572 @cindex whitespace insensitive (空白を無視する)
573 @cindex expressions (表記)
574
575 @funindex { ... }
576 @funindex %
577 @funindex %@{ ... %@}
578
579 LilyPond 入力ファイルは多くの一般的なプログラミング言語のソース ファイルと@c
580 同じようなものです。@c
581 それらは大文字/小文字の区別があり、空白はたいてい無視されます。@c
582 表記は波括弧 @{ @} で囲まれ、@code{%} または @w{@code{%@{ .. %@}}} で@c
583 コメントになります。
584
585 上の文章があなたにとって意味不明だとしても、心配ありません!@c
586 我々がそれらの用語の意味を説明します:
587
588 @itemize
589
590 @item
591 @strong{大文字/小文字の区別}:
592 あなたが小文字 (つまり、@w{@code{a, b, s, t)}} で入力するか、@c
593 大文字 (つまり、@w{@code{A, B, S, T}}) で入力するかの違いです: 
594 @w{@code{@{ c d e @}}} は有効な入力ですが、@w{@code{@{ C D E @}}} では@c
595 エラーになります。
596
597 @item
598 @strong{空白は無視される}:
599 あなたがどれくらい多くのスペース (または新しい行) を追加しても@c
600 問題にならないということです。@c
601 @w{@code{@{ c d e @}}} は @w{@code{@{ c @tie{}} @tie{} @tie{} d e @}} や@c
602 以下と同じ意味になります:
603
604 @example
605 @{ c                        d
606                    e   @}
607 @end example
608
609 @noindent
610 もちろん、このような書き方をすると読みにくいです。@c
611 見やすい書き方は、@c
612 コード ブロックにタブか 2 つのスペースでインデントを付けることです:
613
614 @example
615 @{
616   c d e
617 @}
618 @end example
619
620 @item
621 @strong{表記}:
622 LilyPond 入力の各部分は @strong{@{ 波括弧 @}} で囲まれている必要があります。@c
623 これらの波括弧は LilyPond に入力が単一の音楽表記であることを教えます。@c
624 これはちょうど数学での括弧 @code{()} のようなものです。@c
625 あいまいさを避けるために、波括弧は行の先頭か終端にないかぎりスペースで@c
626 囲まれているべきです。
627
628 波括弧で囲まれた表記が後に続く LilyPond コマンド (@w{@code{\relative @{ @}}} 
629 など) もまた単一の音楽表記としてカウントされます。
630
631 @cindex comments (コメント)
632 @cindex line comment (行コメント)
633 @cindex block comment (ブロック コメント)
634 @item
635 @strong{コメント}:
636 コメントは音楽入力を読む人間のための注釈です。@c
637 これは構文解析中には無視されるため、譜刻される出力には影響を与えません。@c
638 コメントには 2 つのタイプがあります。@c
639 パーセント記号 @code{%} は行コメントになります。@code{%} の後の文字は@c
640 無視されます。@c
641 慣習上、行コメントはそのコメントが参照するコードの上に置かれます。
642
643 @example
644 a4 a a a
645 % this comment refers to the Bs
646 b2 b
647 @end example
648
649 ブロック コメントは音楽入力のある部分全体をコメントにします。@c
650 @code{%@{} と @code{%@}} で囲まれた部分は無視されます。@c
651 しかしながら、ブロック コメントを @q{ネスト} させることはできません。@c
652 このことはあるブロック コメントを他のブロック コメントの中に@c
653 置くことはできないということを意味します。@c
654 そうした場合、最初の @code{%@}} は両方のブロック コメントを@c
655 終わらせてしまいます。@c
656 以下のコード断片はコメントの使用例を示しています:
657
658 @example
659 % notes for twinkle twinkle follow
660 % 以下はキラキラ星です
661   c4 c g' g a a g2
662
663 %@{
664   This line, and the notes below are ignored,
665   since they are in a block comment.
666   この行と以下の音符は無視されます。
667   なぜなら、これらはブロック コメントの中にあるからです
668
669   f f e e d d c2
670 %@}
671 @end example
672
673 @end itemize
674
675
676 @node このマニュアルの読み方
677 @section このマニュアルの読み方
678 @translationof How to read the manual
679
680 FIXME: fluff here
681
682 @menu
683 * 波括弧を省略する::             
684 * クリック可能な例::             
685 * キーボード ナビゲーション::    
686 * マニュアルの概要::             
687 @end menu
688
689
690 @node 波括弧を省略する
691 @unnumberedsubsec 波括弧を省略する
692 @translationof Omitting braces
693
694
695 @cindex how to read the manual (このマニュアルの読み方)
696 @cindex manual, reading (マニュアルを読む)
697 @cindex reading the manual (このマニュアルを読む)
698 @cindex examples, clickable (クリック可能な例)
699 @cindex clickable examples (クリック可能な例)
700 @cindex tips for constructing files (ファイルを構築するための Tips)
701 @cindex templates (テンプレート)
702 @cindex constructing files, tips (ファイルを構築するための Tips)
703 @cindex files, tips for constructing (ファイルを構築するための Tips)
704
705 @c @ref{Working on input files}
706 @ref{入力ファイルに取り組む} で見てきたように、LilyPond 入力は @{ @} マークか 
707 @code{@w{\relative c'' @{ ... @}}} で囲まれていなければなりません。@c
708 このマニュアルの残りの部分では、たいていの例はこのことを省略しています。@c
709 このマニュアルにある例を複製するためにあなたは表示されいている入力を@c
710 コピーするかもしれませんが、あなたは以下のように @code{@w{\relative c'' @{ @}}} 
711 を付け加えなければなりません:
712
713 @example
714 \relative c'' @{
715   ... example goes here...
716   ... 例がここに来ます ...
717 @}
718 @end example
719
720 なぜ波括弧を省略するのか?@c
721 このマニュアルの中のたいていの例はより大きな音楽の途中に@c
722 挿入することができます。@c
723 これらの例に対して @code{@w{\relative c'' @{ @}}} を付け加えることには@c
724 意味がありません -- あなたはある @code{\relative} を他の @code{\relative} の
725 中に置くべきではありません!@c
726 すべての例の周りに @code{@w{\relative c'' @{ @}}} を置いてしまうと、@c
727 あなたは小さな例をコピーして、それをより大きなあなた自身の音楽の中に@c
728 ペーストすることができなくなってしまいます。@c
729 たいていの人は資料を既存の楽曲に付け加えようとしますので、@c
730 我々はそのようにマニュアルを形作っています。
731
732
733 @node クリック可能な例
734 @unnumberedsubsec クリック可能な例
735 @translationof Clickable examples
736
737 多くの人々はすでにあるプログラムを試したり、いじったりすることで@c
738 プログラムを学びます。@c
739 これは LilyPond でも可能です。@c
740 このマニュアルの HTML バージョンの中にある画像をクリックすると、@c
741 画像を生成するために使用された正確な LilyPond 入力を見ることができます。@c
742 以下の画像を試してみてください:
743
744 @c no verbatim here
745 @lilypond[quote]
746 \relative c'' {
747   c-\markup { \bold \huge { Click here.  } }
748 }
749 @end lilypond
750
751 @q{ly 断片} セクションにある記述をカット&ペーストすることによって、@c
752 あなたは LilyPond を経験するための開始テンプレートを入手できます。@c
753 まったく同じもの (線の太さなどもすべて同じ) を出力させるには、@c
754 @qq{Start cut-&-pastable section} からファイルの最後までをコピーしてください。
755
756 @ignore
757 @seealso
758 @ref{LilyPond 入力ファイルの記述に対する提案}
759 に入力ファイルを構築するための更なる TIPS があります。@c
760 しかしながら、まずはこのチュートリアルの残りの部分を読み終えることが大切です。
761 @c LilyPond 入力ファイルの書き方の提案
762 @end ignore
763
764 @node キーボード ナビゲーション
765 @unnumberedsubsec キーボード ナビゲーション
766 @translationof Keyboard navigation
767
768
769 @node マニュアルの概要
770 @unnumberedsubsec マニュアルの概要
771 @translationof Overview of manuals
772
773 FIXME: a brief discussion about the rest of the LM, and pointers
774 to specific places.  like NR for general reference, AU for
775 suggestions for writing files, etc.
776
777