From 19a47f08ccb1e1e55e270bdd70c094962ccd8857 Mon Sep 17 00:00:00 2001 From: Pavel Fric Date: Mon, 14 Feb 2011 18:43:24 +0100 Subject: [PATCH] Doc-cs. Partial translation of fundamental.itely. --- Documentation/cs/learning/fundamental.itely | 43 ++++++++++----------- 1 file changed, 20 insertions(+), 23 deletions(-) diff --git a/Documentation/cs/learning/fundamental.itely b/Documentation/cs/learning/fundamental.itely index 7fbf586763..d34e63c5f0 100755 --- a/Documentation/cs/learning/fundamental.itely +++ b/Documentation/cs/learning/fundamental.itely @@ -377,17 +377,16 @@ pro teď tedy přidáme nějaké noty a text. Pokud si nevzpomínáte, jak se text písně zapisuje, přečtěte si ještě jednou o @code{\addlyrics} v @ref{Zápis jednoduchých písní,,zápisu jednoduchých písní}. -@c KEEP LY @lilypond[verbatim,quote,ragged-right] \score { << - \new Staff = "Zpěvák" << - \new Voice = "Zpěvní hlas" { c'1 } + \new Staff = "singer" << + \new Voice = "vocal" { c'1 } \addlyrics { And } >> - \new PianoStaff = "Klavír" << - \new Staff = "nahoře" { } - \new Staff = "dole" { } + \new PianoStaff = "piano" << + \new Staff = "upper" { c'1 } + \new Staff = "lower" { c'1 } >> >> \layout { } @@ -433,22 +432,21 @@ zadávacích režimů, podívejte se na @ruser{Vstupní režimy}.) Takže nyní máme, když přidáme několik not a basový klíč pro levou ruku, následující příklad: -@c KEEP LY @lilypond[verbatim,quote,ragged-right] -melodie = \relative c'' { r4 d8\noBeam g, c4 r } -text = \lyricmode { And God said, } -nahoře = \relative c'' { 2~ } -dole = \relative c { b2 e } +melody = \relative c'' { r4 d8\noBeam g, c4 r } +text = \lyricmode { And God said, } +upper = \relative c'' { 2~ } +lower = \relative c { b2 e } \score { << - \new Staff = "Zpěvák" << - \new Voice = "Zpěvní hlas" { \melodie } + \new Staff = "singer" << + \new Voice = "vocal" { \melody } \addlyrics { \text } >> - \new PianoStaff = "Klavír" << - \new Staff = "nahoře" { \upper } - \new Staff = "dole" { + \new PianoStaff = "piano" << + \new Staff = "upper" { \upper } + \new Staff = "lower" { \clef "bass" \lower } @@ -982,19 +980,18 @@ korrigieren, indem wir die dritte Stimme einfach auslassen und die Noten in die vierte Stimme verschieben. Das wird einfach vorgenommen, indem noch ein Paar @code{\\}-Stimmen hinzugefügt wird. -@c KEEP LY @lilypond[quote,verbatim,ragged-right] \new Staff \relative c'' { \key aes \major - << % erste Stimme + << % Voice one { c2 aes4. bes8 } - \\ % zweite Stimme + \\ % Voice two { aes2 f4 fes } - \\ % Stimme drei auslassen - \\ % vierte Stimme + \\ % Omit Voice three + \\ % Voice four { 2 des } - >> - 1 + >> | + 1 | } @end lilypond -- 2.39.5