OLD | NEW |
1 @c -*- coding: utf-8; mode: texinfo; documentlanguage: fr -*- | 1 @c -*- coding: utf-8; mode: texinfo; documentlanguage: fr -*- |
2 | 2 |
3 @ignore | 3 @ignore |
4 Translation of GIT committish: 049bdd90b5ae67fe463bf85e926c2eabf51acf74 | 4 Translation of GIT committish: 049bdd90b5ae67fe463bf85e926c2eabf51acf74 |
5 | 5 |
6 When revising a translation, copy the HEAD committish of the | 6 When revising a translation, copy the HEAD committish of the |
7 version that you are working on. For details, see the Contributors' | 7 version that you are working on. For details, see the Contributors' |
8 Guide, node Updating translation committishes.. | 8 Guide, node Updating translation committishes.. |
9 @end ignore | 9 @end ignore |
10 | 10 |
11 @c \version "2.16.0" | 11 @c \version "2.17.6" |
12 | 12 |
13 @c Translators: Frédéric Chiasson | 13 @c Translators: Frédéric Chiasson |
14 @c Translation checkers: Valentin Villenave, Jean-Charles Malahieude | 14 @c Translation checkers: Valentin Villenave, Jean-Charles Malahieude |
15 | 15 |
16 @node Hauteurs | 16 @node Hauteurs |
17 @section Hauteurs | 17 @section Hauteurs |
18 @translationof Pitches | 18 @translationof Pitches |
19 | 19 |
20 @lilypondfile[quote]{pitches-headword.ly} | 20 @lilypondfile[quote]{pitches-headword.ly} |
21 | 21 |
(...skipping 1382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1404 @funindex \accidentalStyle | 1404 @funindex \accidentalStyle |
1405 @funindex voice | 1405 @funindex voice |
1406 @funindex default | 1406 @funindex default |
1407 | 1407 |
1408 LilyPond dispose d'une fonction chargée de regrouper les règles suivant | 1408 LilyPond dispose d'une fonction chargée de regrouper les règles suivant |
1409 lesquelles s'impriment les altérations. Elle s'invoque de la manière | 1409 lesquelles s'impriment les altérations. Elle s'invoque de la manière |
1410 suivante : | 1410 suivante : |
1411 | 1411 |
1412 @example | 1412 @example |
1413 \new Staff << | 1413 \new Staff << |
1414 \accidentalStyle "voice" | 1414 \accidentalStyle voice |
1415 @{ @dots{} @} | 1415 @{ @dots{} @} |
1416 >> | 1416 >> |
1417 @end example | 1417 @end example |
1418 | 1418 |
1419 La règle de gestion des altérations s'applique par défaut au contexte | 1419 La règle de gestion des altérations s'applique par défaut au contexte |
1420 @code{Staff} en cours, exception faite des styles @code{piano} et | 1420 @code{Staff} en cours, exception faite des styles @code{piano} et |
1421 @code{piano-cautionary} comme nous allons le voir. Cette fonction | 1421 @code{piano-cautionary} comme nous allons le voir. Cette fonction |
1422 accepte un éventuel argument supplémentaire chargé de spécifier | 1422 accepte un éventuel argument supplémentaire chargé de spécifier |
1423 le champ d'action de la règle à suivre. À titre d'exemple, il faudra | 1423 le champ d'action de la règle à suivre. À titre d'exemple, il faudra |
1424 utiliser, pour que toutes les portées d'un même système -- contexte | 1424 utiliser, pour que toutes les portées d'un même système -- contexte |
1425 @code{StaffGroup} -- soient soumises à la même règle : | 1425 @code{StaffGroup} -- soient soumises à la même règle : |
1426 | 1426 |
1427 @example | 1427 @example |
1428 \accidentalStyle #'StaffGroup "voice" | 1428 \accidentalStyle StaffGroup.voice |
1429 @end example | 1429 @end example |
1430 | 1430 |
1431 Nous vous présentons ci-après les différentes règles d'altération prises | 1431 Nous vous présentons ci-après les différentes règles d'altération prises |
1432 en charge. Pour les besoins de la démonstration, nous partirons de | 1432 en charge. Pour les besoins de la démonstration, nous partirons de |
1433 l'exemple suivant : | 1433 l'exemple suivant : |
1434 | 1434 |
1435 @lilypond[verbatim,quote] | 1435 @lilypond[verbatim,quote] |
1436 musicA = { | 1436 musicA = { |
1437 << | 1437 << |
1438 \relative c' { | 1438 \relative c' { |
(...skipping 22 matching lines...) Expand all Loading... |
1461 dis'4 | | 1461 dis'4 | |
1462 \change Staff = down | 1462 \change Staff = down |
1463 <fis, a cis>4 gis <f a d>2 | | 1463 <fis, a cis>4 gis <f a d>2 | |
1464 } | 1464 } |
1465 } | 1465 } |
1466 } | 1466 } |
1467 | 1467 |
1468 \new PianoStaff { | 1468 \new PianoStaff { |
1469 << | 1469 << |
1470 \context Staff = "up" { | 1470 \context Staff = "up" { |
1471 \accidentalStyle "default" | 1471 \accidentalStyle default |
1472 \musicA | 1472 \musicA |
1473 } | 1473 } |
1474 \context Staff = "down" { | 1474 \context Staff = "down" { |
1475 \accidentalStyle "default" | 1475 \accidentalStyle default |
1476 \musicB | 1476 \musicB |
1477 } | 1477 } |
1478 >> | 1478 >> |
1479 } | 1479 } |
1480 @end lilypond | 1480 @end lilypond |
1481 | 1481 |
1482 Notez bien que pour appliquer le même style aux deux portées, seules les | 1482 Notez bien que pour appliquer le même style aux deux portées, seules les |
1483 dernières lignes de cet exemple nous intéressent. | 1483 dernières lignes de cet exemple nous intéressent. |
1484 | 1484 |
1485 @example | 1485 @example |
1486 \new PianoStaff @{ | 1486 \new PianoStaff @{ |
1487 << | 1487 << |
1488 \context Staff = "haut" @{ | 1488 \context Staff = "haut" @{ |
1489 %%% voici la ligne à modifier en conséquence : | 1489 %%% voici la ligne à modifier en conséquence : |
1490 \accidentalStyle #'Score "default" | 1490 \accidentalStyle Score.default |
1491 \musicA | 1491 \musicA |
1492 @} | 1492 @} |
1493 \context Staff = "bas" @{ | 1493 \context Staff = "bas" @{ |
1494 \musicB | 1494 \musicB |
1495 @} | 1495 @} |
1496 >> | 1496 >> |
1497 @} | 1497 @} |
1498 @end example | 1498 @end example |
1499 | 1499 |
1500 | 1500 |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1542 dis'4 | | 1542 dis'4 | |
1543 \change Staff = down | 1543 \change Staff = down |
1544 <fis, a cis>4 gis <f a d>2 | | 1544 <fis, a cis>4 gis <f a d>2 | |
1545 } | 1545 } |
1546 } | 1546 } |
1547 } | 1547 } |
1548 | 1548 |
1549 \new PianoStaff { | 1549 \new PianoStaff { |
1550 << | 1550 << |
1551 \context Staff = "up" { | 1551 \context Staff = "up" { |
1552 \accidentalStyle "default" | 1552 \accidentalStyle default |
1553 \musicA | 1553 \musicA |
1554 } | 1554 } |
1555 \context Staff = "down" { | 1555 \context Staff = "down" { |
1556 \accidentalStyle "default" | 1556 \accidentalStyle default |
1557 \musicB | 1557 \musicB |
1558 } | 1558 } |
1559 >> | 1559 >> |
1560 } | 1560 } |
1561 @end lilypond | 1561 @end lilypond |
1562 | 1562 |
1563 @item voice | 1563 @item voice |
1564 | 1564 |
1565 @cindex @emph{voice}, style d'altérations | 1565 @cindex @emph{voice}, style d'altérations |
1566 @cindex altérations, style @emph{voice} | 1566 @cindex altérations, style @emph{voice} |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1614 dis'4 | | 1614 dis'4 | |
1615 \change Staff = down | 1615 \change Staff = down |
1616 <fis, a cis>4 gis <f a d>2 | | 1616 <fis, a cis>4 gis <f a d>2 | |
1617 } | 1617 } |
1618 } | 1618 } |
1619 } | 1619 } |
1620 | 1620 |
1621 \new PianoStaff { | 1621 \new PianoStaff { |
1622 << | 1622 << |
1623 \context Staff = "up" { | 1623 \context Staff = "up" { |
1624 \accidentalStyle "voice" | 1624 \accidentalStyle voice |
1625 \musicA | 1625 \musicA |
1626 } | 1626 } |
1627 \context Staff = "down" { | 1627 \context Staff = "down" { |
1628 \accidentalStyle "voice" | 1628 \accidentalStyle voice |
1629 \musicB | 1629 \musicB |
1630 } | 1630 } |
1631 >> | 1631 >> |
1632 } | 1632 } |
1633 @end lilypond | 1633 @end lilypond |
1634 | 1634 |
1635 @item modern | 1635 @item modern |
1636 | 1636 |
1637 @cindex altération, style @emph{modern} | 1637 @cindex altération, style @emph{modern} |
1638 @cindex @emph{modern}, style d'altération | 1638 @cindex @emph{modern}, style d'altération |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1678 dis'4 | | 1678 dis'4 | |
1679 \change Staff = down | 1679 \change Staff = down |
1680 <fis, a cis>4 gis <f a d>2 | | 1680 <fis, a cis>4 gis <f a d>2 | |
1681 } | 1681 } |
1682 } | 1682 } |
1683 } | 1683 } |
1684 | 1684 |
1685 \new PianoStaff { | 1685 \new PianoStaff { |
1686 << | 1686 << |
1687 \context Staff = "up" { | 1687 \context Staff = "up" { |
1688 \accidentalStyle "modern" | 1688 \accidentalStyle modern |
1689 \musicA | 1689 \musicA |
1690 } | 1690 } |
1691 \context Staff = "down" { | 1691 \context Staff = "down" { |
1692 \accidentalStyle "modern" | 1692 \accidentalStyle modern |
1693 \musicB | 1693 \musicB |
1694 } | 1694 } |
1695 >> | 1695 >> |
1696 } | 1696 } |
1697 @end lilypond | 1697 @end lilypond |
1698 | 1698 |
1699 @item modern-cautionary | 1699 @item modern-cautionary |
1700 | 1700 |
1701 @cindex altération, style @emph{modern cautionary} | 1701 @cindex altération, style @emph{modern cautionary} |
1702 @cindex @emph{modern cautionary}, style d'altération | 1702 @cindex @emph{modern cautionary}, style d'altération |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1740 dis'4 | | 1740 dis'4 | |
1741 \change Staff = down | 1741 \change Staff = down |
1742 <fis, a cis>4 gis <f a d>2 | | 1742 <fis, a cis>4 gis <f a d>2 | |
1743 } | 1743 } |
1744 } | 1744 } |
1745 } | 1745 } |
1746 | 1746 |
1747 \new PianoStaff { | 1747 \new PianoStaff { |
1748 << | 1748 << |
1749 \context Staff = "up" { | 1749 \context Staff = "up" { |
1750 \accidentalStyle "modern-cautionary" | 1750 \accidentalStyle modern-cautionary |
1751 \musicA | 1751 \musicA |
1752 } | 1752 } |
1753 \context Staff = "down" { | 1753 \context Staff = "down" { |
1754 \accidentalStyle "modern-cautionary" | 1754 \accidentalStyle modern-cautionary |
1755 \musicB | 1755 \musicB |
1756 } | 1756 } |
1757 >> | 1757 >> |
1758 } | 1758 } |
1759 @end lilypond | 1759 @end lilypond |
1760 | 1760 |
1761 @item modern-voice | 1761 @item modern-voice |
1762 | 1762 |
1763 @cindex @emph{modern}, style d'altération | 1763 @cindex @emph{modern}, style d'altération |
1764 @cindex style d'altération @emph{modern} | 1764 @cindex style d'altération @emph{modern} |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1807 dis'4 | | 1807 dis'4 | |
1808 \change Staff = down | 1808 \change Staff = down |
1809 <fis, a cis>4 gis <f a d>2 | | 1809 <fis, a cis>4 gis <f a d>2 | |
1810 } | 1810 } |
1811 } | 1811 } |
1812 } | 1812 } |
1813 | 1813 |
1814 \new PianoStaff { | 1814 \new PianoStaff { |
1815 << | 1815 << |
1816 \context Staff = "up" { | 1816 \context Staff = "up" { |
1817 \accidentalStyle "modern-voice" | 1817 \accidentalStyle modern-voice |
1818 \musicA | 1818 \musicA |
1819 } | 1819 } |
1820 \context Staff = "down" { | 1820 \context Staff = "down" { |
1821 \accidentalStyle "modern-voice" | 1821 \accidentalStyle modern-voice |
1822 \musicB | 1822 \musicB |
1823 } | 1823 } |
1824 >> | 1824 >> |
1825 } | 1825 } |
1826 @end lilypond | 1826 @end lilypond |
1827 | 1827 |
1828 @item modern-voice-cautionary | 1828 @item modern-voice-cautionary |
1829 | 1829 |
1830 @cindex altération de précaution style @emph{modern voice} | 1830 @cindex altération de précaution style @emph{modern voice} |
1831 @cindex @emph{modern voice}, style d'altération de précaution | 1831 @cindex @emph{modern voice}, style d'altération de précaution |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1867 dis'4 | | 1867 dis'4 | |
1868 \change Staff = down | 1868 \change Staff = down |
1869 <fis, a cis>4 gis <f a d>2 | | 1869 <fis, a cis>4 gis <f a d>2 | |
1870 } | 1870 } |
1871 } | 1871 } |
1872 } | 1872 } |
1873 | 1873 |
1874 \new PianoStaff { | 1874 \new PianoStaff { |
1875 << | 1875 << |
1876 \context Staff = "up" { | 1876 \context Staff = "up" { |
1877 \accidentalStyle "modern-voice-cautionary" | 1877 \accidentalStyle modern-voice-cautionary |
1878 \musicA | 1878 \musicA |
1879 } | 1879 } |
1880 \context Staff = "down" { | 1880 \context Staff = "down" { |
1881 \accidentalStyle "modern-voice-cautionary" | 1881 \accidentalStyle modern-voice-cautionary |
1882 \musicB | 1882 \musicB |
1883 } | 1883 } |
1884 >> | 1884 >> |
1885 } | 1885 } |
1886 @end lilypond | 1886 @end lilypond |
1887 | 1887 |
1888 @item piano | 1888 @item piano |
1889 | 1889 |
1890 @cindex @emph{piano}, style d'altérations | 1890 @cindex @emph{piano}, style d'altérations |
1891 @cindex altérations style @emph{piano} | 1891 @cindex altérations style @emph{piano} |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1930 dis'4 | | 1930 dis'4 | |
1931 \change Staff = down | 1931 \change Staff = down |
1932 <fis, a cis>4 gis <f a d>2 | | 1932 <fis, a cis>4 gis <f a d>2 | |
1933 } | 1933 } |
1934 } | 1934 } |
1935 } | 1935 } |
1936 | 1936 |
1937 \new PianoStaff { | 1937 \new PianoStaff { |
1938 << | 1938 << |
1939 \context Staff = "up" { | 1939 \context Staff = "up" { |
1940 \accidentalStyle "piano" | 1940 \accidentalStyle piano |
1941 \musicA | 1941 \musicA |
1942 } | 1942 } |
1943 \context Staff = "down" { | 1943 \context Staff = "down" { |
1944 \musicB | 1944 \musicB |
1945 } | 1945 } |
1946 >> | 1946 >> |
1947 } | 1947 } |
1948 @end lilypond | 1948 @end lilypond |
1949 | 1949 |
1950 @item piano-cautionary | 1950 @item piano-cautionary |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1987 dis'4 | | 1987 dis'4 | |
1988 \change Staff = down | 1988 \change Staff = down |
1989 <fis, a cis>4 gis <f a d>2 | | 1989 <fis, a cis>4 gis <f a d>2 | |
1990 } | 1990 } |
1991 } | 1991 } |
1992 } | 1992 } |
1993 | 1993 |
1994 \new PianoStaff { | 1994 \new PianoStaff { |
1995 << | 1995 << |
1996 \context Staff = "up" { | 1996 \context Staff = "up" { |
1997 \accidentalStyle "piano-cautionary" | 1997 \accidentalStyle piano-cautionary |
1998 \musicA | 1998 \musicA |
1999 } | 1999 } |
2000 \context Staff = "down" { | 2000 \context Staff = "down" { |
2001 \musicB | 2001 \musicB |
2002 } | 2002 } |
2003 >> | 2003 >> |
2004 } | 2004 } |
2005 @end lilypond | 2005 @end lilypond |
2006 | 2006 |
2007 @item neo-modern | 2007 @item neo-modern |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2045 dis'4 | | 2045 dis'4 | |
2046 \change Staff = down | 2046 \change Staff = down |
2047 <fis, a cis>4 gis <f a d>2 | | 2047 <fis, a cis>4 gis <f a d>2 | |
2048 } | 2048 } |
2049 } | 2049 } |
2050 } | 2050 } |
2051 | 2051 |
2052 \new PianoStaff { | 2052 \new PianoStaff { |
2053 << | 2053 << |
2054 \context Staff = "up" { | 2054 \context Staff = "up" { |
2055 \accidentalStyle "neo-modern" | 2055 \accidentalStyle neo-modern |
2056 \musicA | 2056 \musicA |
2057 } | 2057 } |
2058 \context Staff = "down" { | 2058 \context Staff = "down" { |
2059 \accidentalStyle "neo-modern" | 2059 \accidentalStyle neo-modern |
2060 \musicB | 2060 \musicB |
2061 } | 2061 } |
2062 >> | 2062 >> |
2063 } | 2063 } |
2064 @end lilypond | 2064 @end lilypond |
2065 | 2065 |
2066 @item neo-modern-cautionary | 2066 @item neo-modern-cautionary |
2067 | 2067 |
2068 @cindex @emph{neo-modern-cautionary}, style d'altérations | 2068 @cindex @emph{neo-modern-cautionary}, style d'altérations |
2069 @cindex style d'altération @emph{neo-modern-cautionary} | 2069 @cindex style d'altération @emph{neo-modern-cautionary} |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2102 dis'4 | | 2102 dis'4 | |
2103 \change Staff = down | 2103 \change Staff = down |
2104 <fis, a cis>4 gis <f a d>2 | | 2104 <fis, a cis>4 gis <f a d>2 | |
2105 } | 2105 } |
2106 } | 2106 } |
2107 } | 2107 } |
2108 | 2108 |
2109 \new PianoStaff { | 2109 \new PianoStaff { |
2110 << | 2110 << |
2111 \context Staff = "up" { | 2111 \context Staff = "up" { |
2112 \accidentalStyle "neo-modern-cautionary" | 2112 \accidentalStyle neo-modern-cautionary |
2113 \musicA | 2113 \musicA |
2114 } | 2114 } |
2115 \context Staff = "down" { | 2115 \context Staff = "down" { |
2116 \accidentalStyle "neo-modern-cautionary" | 2116 \accidentalStyle neo-modern-cautionary |
2117 \musicB | 2117 \musicB |
2118 } | 2118 } |
2119 >> | 2119 >> |
2120 } | 2120 } |
2121 @end lilypond | 2121 @end lilypond |
2122 | 2122 |
2123 @item neo-modern-voice | 2123 @item neo-modern-voice |
2124 | 2124 |
2125 @cindex @emph{neo-modern-voice}, style d'altération | 2125 @cindex @emph{neo-modern-voice}, style d'altération |
2126 @cindex style d'altération @emph{neo-modern-voice} | 2126 @cindex style d'altération @emph{neo-modern-voice} |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2165 dis'4 | | 2165 dis'4 | |
2166 \change Staff = down | 2166 \change Staff = down |
2167 <fis, a cis>4 gis <f a d>2 | | 2167 <fis, a cis>4 gis <f a d>2 | |
2168 } | 2168 } |
2169 } | 2169 } |
2170 } | 2170 } |
2171 | 2171 |
2172 \new PianoStaff { | 2172 \new PianoStaff { |
2173 << | 2173 << |
2174 \context Staff = "up" { | 2174 \context Staff = "up" { |
2175 \accidentalStyle "neo-modern-voice" | 2175 \accidentalStyle neo-modern-voice |
2176 \musicA | 2176 \musicA |
2177 } | 2177 } |
2178 \context Staff = "down" { | 2178 \context Staff = "down" { |
2179 \accidentalStyle "neo-modern-voice" | 2179 \accidentalStyle neo-modern-voice |
2180 \musicB | 2180 \musicB |
2181 } | 2181 } |
2182 >> | 2182 >> |
2183 } | 2183 } |
2184 @end lilypond | 2184 @end lilypond |
2185 | 2185 |
2186 @item neo-modern-voice-cautionary | 2186 @item neo-modern-voice-cautionary |
2187 | 2187 |
2188 @funindex neo-modern-voice-cautionary | 2188 @funindex neo-modern-voice-cautionary |
2189 | 2189 |
(...skipping 30 matching lines...) Expand all Loading... |
2220 dis'4 | | 2220 dis'4 | |
2221 \change Staff = down | 2221 \change Staff = down |
2222 <fis, a cis>4 gis <f a d>2 | | 2222 <fis, a cis>4 gis <f a d>2 | |
2223 } | 2223 } |
2224 } | 2224 } |
2225 } | 2225 } |
2226 | 2226 |
2227 \new PianoStaff { | 2227 \new PianoStaff { |
2228 << | 2228 << |
2229 \context Staff = "up" { | 2229 \context Staff = "up" { |
2230 \accidentalStyle "neo-modern-voice-cautionary" | 2230 \accidentalStyle neo-modern-voice-cautionary |
2231 \musicA | 2231 \musicA |
2232 } | 2232 } |
2233 \context Staff = "down" { | 2233 \context Staff = "down" { |
2234 \accidentalStyle "neo-modern-voice-cautionary" | 2234 \accidentalStyle neo-modern-voice-cautionary |
2235 \musicB | 2235 \musicB |
2236 } | 2236 } |
2237 >> | 2237 >> |
2238 } | 2238 } |
2239 @end lilypond | 2239 @end lilypond |
2240 | 2240 |
2241 @item dodecaphonic | 2241 @item dodecaphonic |
2242 | 2242 |
2243 @cindex @emph{dodecaphonic}, style d'altérations | 2243 @cindex @emph{dodecaphonic}, style d'altérations |
2244 @cindex altération, style @emph{dodecaphonic} | 2244 @cindex altération, style @emph{dodecaphonic} |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2279 dis'4 | | 2279 dis'4 | |
2280 \change Staff = down | 2280 \change Staff = down |
2281 <fis, a cis>4 gis <f a d>2 | | 2281 <fis, a cis>4 gis <f a d>2 | |
2282 } | 2282 } |
2283 } | 2283 } |
2284 } | 2284 } |
2285 | 2285 |
2286 \new PianoStaff { | 2286 \new PianoStaff { |
2287 << | 2287 << |
2288 \context Staff = "up" { | 2288 \context Staff = "up" { |
2289 \accidentalStyle "dodecaphonic" | 2289 \accidentalStyle dodecaphonic |
2290 \musicA | 2290 \musicA |
2291 } | 2291 } |
2292 \context Staff = "down" { | 2292 \context Staff = "down" { |
2293 \accidentalStyle "dodecaphonic" | 2293 \accidentalStyle dodecaphonic |
2294 \musicB | 2294 \musicB |
2295 } | 2295 } |
2296 >> | 2296 >> |
2297 } | 2297 } |
2298 @end lilypond | 2298 @end lilypond |
2299 | 2299 |
2300 | 2300 |
2301 @item teaching | 2301 @item teaching |
2302 | 2302 |
2303 @cindex @emph{teaching}, style d'altérations | 2303 @cindex @emph{teaching}, style d'altérations |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2341 \change Staff = down | 2341 \change Staff = down |
2342 <fis, a cis>4 gis <f a d>2 | | 2342 <fis, a cis>4 gis <f a d>2 | |
2343 } | 2343 } |
2344 } | 2344 } |
2345 } | 2345 } |
2346 | 2346 |
2347 \new PianoStaff { | 2347 \new PianoStaff { |
2348 << | 2348 << |
2349 \context Staff = "up" { | 2349 \context Staff = "up" { |
2350 \key fis \minor | 2350 \key fis \minor |
2351 \accidentalStyle "teaching" | 2351 \accidentalStyle teaching |
2352 \musicA | 2352 \musicA |
2353 } | 2353 } |
2354 \context Staff = "down" { | 2354 \context Staff = "down" { |
2355 \key fis \minor | 2355 \key fis \minor |
2356 \accidentalStyle "teaching" | 2356 \accidentalStyle teaching |
2357 \musicB | 2357 \musicB |
2358 } | 2358 } |
2359 >> | 2359 >> |
2360 } | 2360 } |
2361 @end lilypond | 2361 @end lilypond |
2362 | 2362 |
2363 @item no-reset | 2363 @item no-reset |
2364 | 2364 |
2365 @cindex altération, style @emph{no reset} | 2365 @cindex altération, style @emph{no reset} |
2366 @cindex @emph{no reset}, style d'altérations | 2366 @cindex @emph{no reset}, style d'altérations |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2399 dis'4 | | 2399 dis'4 | |
2400 \change Staff = down | 2400 \change Staff = down |
2401 <fis, a cis>4 gis <f a d>2 | | 2401 <fis, a cis>4 gis <f a d>2 | |
2402 } | 2402 } |
2403 } | 2403 } |
2404 } | 2404 } |
2405 | 2405 |
2406 \new PianoStaff { | 2406 \new PianoStaff { |
2407 << | 2407 << |
2408 \context Staff = "up" { | 2408 \context Staff = "up" { |
2409 \accidentalStyle "no-reset" | 2409 \accidentalStyle no-reset |
2410 \musicA | 2410 \musicA |
2411 } | 2411 } |
2412 \context Staff = "down" { | 2412 \context Staff = "down" { |
2413 \accidentalStyle "no-reset" | 2413 \accidentalStyle no-reset |
2414 \musicB | 2414 \musicB |
2415 } | 2415 } |
2416 >> | 2416 >> |
2417 } | 2417 } |
2418 @end lilypond | 2418 @end lilypond |
2419 | 2419 |
2420 @item forget | 2420 @item forget |
2421 | 2421 |
2422 @cindex @emph{forget}, style d'altérations | 2422 @cindex @emph{forget}, style d'altérations |
2423 @cindex altérations, style @emph{forget} | 2423 @cindex altérations, style @emph{forget} |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2458 dis'4 | | 2458 dis'4 | |
2459 \change Staff = down | 2459 \change Staff = down |
2460 <fis, a cis>4 gis <f a d>2 | | 2460 <fis, a cis>4 gis <f a d>2 | |
2461 } | 2461 } |
2462 } | 2462 } |
2463 } | 2463 } |
2464 | 2464 |
2465 \new PianoStaff { | 2465 \new PianoStaff { |
2466 << | 2466 << |
2467 \context Staff = "up" { | 2467 \context Staff = "up" { |
2468 \accidentalStyle "forget" | 2468 \accidentalStyle forget |
2469 \musicA | 2469 \musicA |
2470 } | 2470 } |
2471 \context Staff = "down" { | 2471 \context Staff = "down" { |
2472 \accidentalStyle "forget" | 2472 \accidentalStyle forget |
2473 \musicB | 2473 \musicB |
2474 } | 2474 } |
2475 >> | 2475 >> |
2476 } | 2476 } |
2477 @end lilypond | 2477 @end lilypond |
2478 @end table | 2478 @end table |
2479 | 2479 |
2480 @seealso | 2480 @seealso |
2481 Morceaux choisis : | 2481 Morceaux choisis : |
2482 @rlsrnamed{Pitches,Hauteurs}. | 2482 @rlsrnamed{Pitches,Hauteurs}. |
(...skipping 26 matching lines...) Expand all Loading... |
2509 | 2509 |
2510 L'absence d'altération de précaution est déterminée par l'examen de la | 2510 L'absence d'altération de précaution est déterminée par l'examen de la |
2511 mesure précédente. Néanmoins, lorsqu'un bloc @code{\alternative} suit | 2511 mesure précédente. Néanmoins, lorsqu'un bloc @code{\alternative} suit |
2512 une section @code{\repeat volta N}, la logique voudrait que | 2512 une section @code{\repeat volta N}, la logique voudrait que |
2513 l'on regarde la dernière mesure @emph{jouée} plutôt que la dernière | 2513 l'on regarde la dernière mesure @emph{jouée} plutôt que la dernière |
2514 @emph{imprimée}. Dans l'exemple qui suit, vous conviendrez que le do de | 2514 @emph{imprimée}. Dans l'exemple qui suit, vous conviendrez que le do de |
2515 la seconde alternative ne nécessite pas son bécarre. | 2515 la seconde alternative ne nécessite pas son bécarre. |
2516 | 2516 |
2517 @lilypond[quote] | 2517 @lilypond[quote] |
2518 { | 2518 { |
2519 \accidentalStyle "modern" | 2519 \accidentalStyle modern |
2520 \time 2/4 | 2520 \time 2/4 |
2521 \repeat volta 2 { | 2521 \repeat volta 2 { |
2522 c'2 | 2522 c'2 |
2523 } | 2523 } |
2524 \alternative { | 2524 \alternative { |
2525 cis' | 2525 cis' |
2526 c' | 2526 c' |
2527 } | 2527 } |
2528 } | 2528 } |
2529 @end lilypond | 2529 @end lilypond |
2530 | 2530 |
2531 L'astuce suivante, qui définit temporairement le recours au style | 2531 L'astuce suivante, qui définit temporairement le recours au style |
2532 @code{forget}, permet d'obtenir quelque chose de présentable. | 2532 @code{forget}, permet d'obtenir quelque chose de présentable. |
2533 | 2533 |
2534 @lilypond[verbatim,quote] | 2534 @lilypond[verbatim,quote] |
2535 forget = #(define-music-function (parser location music) (ly:music?) #{ | 2535 forget = #(define-music-function (parser location music) (ly:music?) #{ |
2536 \accidentalStyle "forget" | 2536 \accidentalStyle forget |
2537 #music | 2537 #music |
2538 \accidentalStyle "modern" | 2538 \accidentalStyle modern |
2539 #}) | 2539 #}) |
2540 { | 2540 { |
2541 \accidentalStyle "modern" | 2541 \accidentalStyle modern |
2542 \time 2/4 | 2542 \time 2/4 |
2543 \repeat volta 2 { | 2543 \repeat volta 2 { |
2544 c'2 | 2544 c'2 |
2545 } | 2545 } |
2546 \alternative { | 2546 \alternative { |
2547 cis' | 2547 cis' |
2548 \forget c' | 2548 \forget c' |
2549 } | 2549 } |
2550 } | 2550 } |
2551 @end lilypond | 2551 @end lilypond |
(...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2934 @rinternals{Voice}, | 2934 @rinternals{Voice}, |
2935 @rinternals{RhythmicStaff}. | 2935 @rinternals{RhythmicStaff}. |
2936 | 2936 |
2937 | 2937 |
2938 @c LocalWords: lilypondfile subsection translationof seealso funindex | 2938 @c LocalWords: lilypondfile subsection translationof seealso funindex |
2939 @c LocalWords: unnumberedsubsubsec rglosnamed rlsrnamed itemize quote | 2939 @c LocalWords: unnumberedsubsubsec rglosnamed rlsrnamed itemize quote |
2940 @c LocalWords: rinternals rlearning snippets texidoc doctitle | 2940 @c LocalWords: rinternals rlearning snippets texidoc doctitle |
2941 @c LocalWords: ragged-right knownissues quotation multitable headitem | 2941 @c LocalWords: ragged-right knownissues quotation multitable headitem |
2942 @c LocalWords: noindent Staff.instrumentName Staff.midiInstrument | 2942 @c LocalWords: noindent Staff.instrumentName Staff.midiInstrument |
2943 @c LocalWords: accidentalStyle PianoStaff GrandStaff predefined | 2943 @c LocalWords: accidentalStyle PianoStaff GrandStaff predefined |
OLD | NEW |