]> git.donarmstrong.com Git - lilypond.git/commitdiff
Add French cheatsheet.itely
authorValentin Villenave <valentin@villenave.net>
Sun, 18 Mar 2007 22:12:51 +0000 (23:12 +0100)
committerJohn Mandereau <john.mandereau@gmail.com>
Sun, 18 Mar 2007 22:12:51 +0000 (23:12 +0100)
Documentation/fr/user/cheatsheet.itely

index ffea26473ed8f60bbe5160d2fa06cf93df370ac7..ce8b2b878f90f741b338dce160142c0deed2ba7b 100644 (file)
 @c -*- coding: utf-8; mode: texinfo; documentlanguage: fr -*-
 @c This file is part of lilypond.tely
 @ignore
-    Translation of GIT committish: d56aa8181857c5feabf303ae88e716eba069f0a9
-
+    Translation of GIT committish: c7d952c4fd5fbb5b9e32e7a2bf50ceec20098160
 
     When revising a translation, copy the HEAD committish of the
     version that you are working on.  See TRANSLATION for details.
 @end ignore
 
 
+@c TODO: add tablature.
+
 @node Cheat sheet
 @appendix Cheat sheet
 
-UNTRANSLATED NODE: IGNORE ME
 
+@multitable @columnfractions .35 .3 .35
+
+@item @b{Syntaxe}
+@tab @b{Description}
+@tab @b{Exemple}
+
+@item @code{1 2 8 16}
+@tab valeurs rythmiques
+@tab
+@lilypond[fragment,relative=2,notime]
+\set Staff.autoBeaming = ##f
+\override Staff.Clef #'break-visibility = #all-invisible
+c1 c2 c8 c16
+@end lilypond
+
+@item @code{c4. c4..}
+@tab notes pointées
+@tab
+@lilypond[fragment,relative=2,notime]
+\override Staff.Clef #'break-visibility = #all-invisible
+c4. c4..  
+@end lilypond
+
+@item @code{c d e f g a b }
+@tab gamme
+@tab
+@lilypond[fragment,relative=1,notime]
+c d e f g a b
+@end lilypond
+
+@item @code{fis bes}
+@tab altérations 
+@tab
+@lilypond[fragment,relative=1,notime]
+fis bes
+@end lilypond
+
+@item @code{\clef treble \clef bass }
+@tab clés
+@tab
+@lilypond[fragment,notime]
+\clef treble
+s4_" "
+\clef bass
+s4_" "
+@end lilypond
+
+@item @code{\time 3/4 \time 4/4 }
+@tab chiffre de mesure
+@tab
+@lilypond[fragment]
+\override Staff.Clef #'transparent = ##t 
+\time 3/4
+s4_" "
+\time 4/4
+s16_" "
+@end lilypond
+
+
+@item @code{r4 r8}
+@tab silences
+@tab
+@lilypond[relative=2,notime,fragment]
+\override Staff.Clef #'break-visibility = #all-invisible
+r4 r8
+@end lilypond
+
+@item @code{d ~ d}
+@tab liaisons de tenue
+@tab
+@lilypond[relative=2,notime,fragment]
+\set Score.timing = ##f
+\set Staff.autoBeaming = ##f
+d ~ d
+@end lilypond
+
+@item @code{\key es \major }
+@tab armure
+@tab
+@lilypond[notime,fragment]
+\clef treble
+\key es \major
+s4 
+@end lilypond
+
+@item @var{note}@code{'}
+@tab monter d'une octave
+@tab
+@lilypond[relative=2,notime,fragment]
+\set Score.timing = ##f
+\set Staff.autoBeaming = ##f
+a a'
+@end lilypond
+
+@item @var{note}@code{,}
+@tab baisser d'une octave
+@tab
+@lilypond[relative=2,notime,fragment]
+\set Score.timing = ##f
+\set Staff.autoBeaming = ##f
+c c,
+@end lilypond
+
+
+@item @code{c( d e)}
+@tab liaisons
+@tab
+@lilypond[fragment,relative=2]
+\set Score.timing = ##f
+\set Staff.implicitTimeSignatureVisibility = #all-invisible
+\set Staff.autoBeaming = ##f
+c( d e)
+@end lilypond
+
+
+@item @code{c\( c( d) e\)}
+@tab liaisons de phrasé
+@tab
+@lilypond[fragment,relative=2]
+\set Score.timing = ##f
+\set Staff.implicitTimeSignatureVisibility = #all-invisible
+\set Staff.autoBeaming = ##f
+c\( c( d) e\)
+@end lilypond
+
+
+@item @code{a8[ b]}
+@tab ligatures
+@tab
+@lilypond[fragment,relative=2]
+\set Score.timing = ##f
+\set Staff.implicitTimeSignatureVisibility = #all-invisible
+\set Staff.autoBeaming = ##f
+a8-[ b-]
+@end lilypond
+
+
+@item @code{<< \new Staff ... >>}
+@tab ajouter des portées
+@tab
+@lilypond[fragment]
+<< \new Staff { c'1 }
+  \new Staff { c'1 } >>
+@end lilypond
+
+  
+@item @code{c-> c-.}
+@tab indications d'articulation
+@tab
+@lilypond[fragment,relative=2]
+\set Staff.implicitTimeSignatureVisibility = #all-invisible
+c-> c-.
+@end lilypond
+
+
+@item @code{c\mf c\sfz}
+@tab nuances
+@tab
+@lilypond[fragment,relative=2]
+\set Staff.implicitTimeSignatureVisibility = #all-invisible
+c\mf c\sfz
+@end lilypond
+
+
+@item @code{a\< a a\!}
+@tab crescendo
+@tab
+@lilypond[fragment,relative=2]
+\set Score.timing = ##f
+\set Staff.implicitTimeSignatureVisibility = #all-invisible
+\set Staff.autoBeaming = ##f
+a\< a a\!
+@end lilypond
+
+@item @code{a\> a a\!}
+@tab decrescendo
+@tab
+@lilypond[fragment,relative=2]
+\set Score.timing = ##f
+\set Staff.implicitTimeSignatureVisibility = #all-invisible
+\set Staff.autoBeaming = ##f
+a\> a a\!
+@end lilypond
+
+
+@item @code{< >}
+@tab accords
+@tab
+@lilypond[fragment,relative=2]
+<c e> 
+@end lilypond
+
+
+@item @code{\partial 8}
+@tab levées
+@tab
+@lilypond[fragment,relative=2]
+\partial 8
+f8 c2 d e
+@end lilypond
+
+
+@item @code{\times 2/3 @{f g a@}}
+@tab triolets
+@tab
+@lilypond[relative=1,fragment]
+\times 2/3 { f8 g a }
+@end lilypond
+
+
+@item @code{\grace}
+@tab appogiatures
+@tab
+@lilypond[relative=2,fragment]
+\context Voice { \grace b16 c4 }
+@end lilypond
+
+@item @code{\lyricmode @{ twinkle @}}
+@tab ajouter des paroles
+@tab
+twinkle
+
+
+@item @code{\new Lyrics}
+@tab imprimer les paroles
+@tab
+@lilypond[fragment]
+\new Lyrics \lyricmode { twinkle }
+@end lilypond
+
+@item @code{twin -- kle}
+@tab diviser un mot en plusieurs syllabes
+@tab
+@lilypond[fragment,relative=2]
+<<
+   { g'1 g }
+  \new Lyrics \lyricsto "" { twin -- kle }
+>> 
+@end lilypond
+
+@item @code{\chordmode @{ c:dim f:maj7 @}}
+@tab accords chiffrés
+@tab
+@lilypond[fragment,relative=2]
+\chordmode { c:dim f:maj7 }
+@end lilypond
+
+@item @code{\context ChordNames}
+@tab imprimer les chiffrages d'accords 
+@tab
+@lilypond[fragment,relative=2]
+\chords { c:dim f:maj7 }
+@end lilypond
+
+@item @code{<<@{e f@} \\ @{c d@}>>}
+@tab polyphonies
+@tab
+@lilypond[fragment,relative=2]
+\context Staff <<{e f} \\ {c d}>>
+@end lilypond
+
+
+@item @code{s4 s8 s16}
+@tab silences invisibles
+@tab
 
--- SKELETON FILE --
-When you actually translate this file, please remove these lines as
-well as all `UNTRANSLATED NODE: IGNORE ME' lines.
+@end multitable