OLD | NEW |
1 @c -*- coding: utf-8; mode: texinfo; documentlanguage: ja -*- | 1 @c -*- coding: utf-8; mode: texinfo; documentlanguage: ja -*- |
2 @ignore | 2 @ignore |
3 Translation of GIT committish: d5647c5fd1c38d4124d2374725b923f4901f3661 | 3 Translation of GIT committish: d5647c5fd1c38d4124d2374725b923f4901f3661 |
4 | 4 |
5 When revising a translation, copy the HEAD committish of the | 5 When revising a translation, copy the HEAD committish of the |
6 version that you are working on. See TRANSLATION for details. | 6 version that you are working on. See TRANSLATION for details. |
7 @end ignore | 7 @end ignore |
8 | 8 |
9 @c \version "2.16.0" | 9 @c \version "2.17.6" |
10 | 10 |
11 @c Translators: Yoshiki Sawada | 11 @c Translators: Yoshiki Sawada |
12 @c Translation status: post-GDP | 12 @c Translation status: post-GDP |
13 | 13 |
14 | 14 |
15 @node ピッチ | 15 @node ピッチ |
16 @section ピッチ | 16 @section ピッチ |
17 @translationof Pitches | 17 @translationof Pitches |
18 | 18 |
19 @lilypondfile[quote]{pitches-headword.ly} | 19 @lilypondfile[quote]{pitches-headword.ly} |
(...skipping 1444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1464 @funindex voice | 1464 @funindex voice |
1465 @funindex default | 1465 @funindex default |
1466 | 1466 |
1467 臨時記号の譜刻の仕方には多くの異なる規約があります。@c | 1467 臨時記号の譜刻の仕方には多くの異なる規約があります。@c |
1468 LilyPond はどの臨時記号スタイルを使用するのかを指定するための関数を@c | 1468 LilyPond はどの臨時記号スタイルを使用するのかを指定するための関数を@c |
1469 提供します。@c | 1469 提供します。@c |
1470 この関数は以下のように呼び出されます: | 1470 この関数は以下のように呼び出されます: |
1471 | 1471 |
1472 @example | 1472 @example |
1473 \new Staff << | 1473 \new Staff << |
1474 \accidentalStyle "voice" | 1474 \accidentalStyle voice |
1475 @{ @dots{} @} | 1475 @{ @dots{} @} |
1476 >> | 1476 >> |
1477 @end example | 1477 @end example |
1478 | 1478 |
1479 指定された臨時記号スタイルは、デフォルトでは、カレントの @code{Staff} に@c | 1479 指定された臨時記号スタイルは、デフォルトでは、カレントの @code{Staff} に@c |
1480 適用されます | 1480 適用されます |
1481 (スタイル @code{piano} と @code{piano-cautionary} は例外です。@c | 1481 (スタイル @code{piano} と @code{piano-cautionary} は例外です。@c |
1482 これらは以下で説明します)。@c | 1482 これらは以下で説明します)。@c |
1483 オプションとして、この関数は 2 つ目の引数をとることができ、@c | 1483 オプションとして、この関数は 2 つ目の引数をとることができ、@c |
1484 それによってスタイルを変更すべき範囲 (スコープ) を指定できます。@c | 1484 それによってスタイルを変更すべき範囲 (スコープ) を指定できます。@c |
1485 例えば、カレントの @code{StaffGroup} のすべての譜で同じスタイルを使うには、@c | 1485 例えば、カレントの @code{StaffGroup} のすべての譜で同じスタイルを使うには、@c |
1486 以下のようにします: | 1486 以下のようにします: |
1487 | 1487 |
1488 @example | 1488 @example |
1489 \accidentalStyle #'StaffGroup "voice" | 1489 \accidentalStyle StaffGroup.voice |
1490 @end example | 1490 @end example |
1491 | 1491 |
1492 サポートされる臨時記号スタイルを以下で示します。@c | 1492 サポートされる臨時記号スタイルを以下で示します。@c |
1493 それぞれのスタイルを実際に示すために、以下の例を使用します: | 1493 それぞれのスタイルを実際に示すために、以下の例を使用します: |
1494 | 1494 |
1495 @lilypond[verbatim,quote] | 1495 @lilypond[verbatim,quote] |
1496 musicA = { | 1496 musicA = { |
1497 << | 1497 << |
1498 \relative c' { | 1498 \relative c' { |
1499 cis'8 fis, bes4 <a cis>8 f bis4 | | 1499 cis'8 fis, bes4 <a cis>8 f bis4 | |
(...skipping 21 matching lines...) Expand all Loading... |
1521 dis'4 | | 1521 dis'4 | |
1522 \change Staff = down | 1522 \change Staff = down |
1523 <fis, a cis>4 gis <f a d>2 | | 1523 <fis, a cis>4 gis <f a d>2 | |
1524 } | 1524 } |
1525 } | 1525 } |
1526 } | 1526 } |
1527 | 1527 |
1528 \new PianoStaff { | 1528 \new PianoStaff { |
1529 << | 1529 << |
1530 \context Staff = "up" { | 1530 \context Staff = "up" { |
1531 \accidentalStyle "default" | 1531 \accidentalStyle default |
1532 \musicA | 1532 \musicA |
1533 } | 1533 } |
1534 \context Staff = "down" { | 1534 \context Staff = "down" { |
1535 \accidentalStyle "default" | 1535 \accidentalStyle default |
1536 \musicB | 1536 \musicB |
1537 } | 1537 } |
1538 >> | 1538 >> |
1539 } | 1539 } |
1540 @end lilypond | 1540 @end lilypond |
1541 | 1541 |
1542 両方の譜で同じ臨時記号スタイルを使うのなら、@c | 1542 両方の譜で同じ臨時記号スタイルを使うのなら、@c |
1543 この例の最後のブロックを以下で置き換えられます: | 1543 この例の最後のブロックを以下で置き換えられます: |
1544 | 1544 |
1545 @example | 1545 @example |
1546 \new PianoStaff @{ | 1546 \new PianoStaff @{ |
1547 << | 1547 << |
1548 \context Staff = "up" @{ | 1548 \context Staff = "up" @{ |
1549 %%% 次の行を変更したいスタイルに合わせて変更してください: | 1549 %%% 次の行を変更したいスタイルに合わせて変更してください: |
1550 \accidentalStyle #'Score "default" | 1550 \accidentalStyle Score.default |
1551 \musicA | 1551 \musicA |
1552 @} | 1552 @} |
1553 \context Staff = "down" @{ | 1553 \context Staff = "down" @{ |
1554 \musicB | 1554 \musicB |
1555 @} | 1555 @} |
1556 >> | 1556 >> |
1557 @} | 1557 @} |
1558 @end example | 1558 @end example |
1559 | 1559 |
1560 | 1560 |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1603 dis'4 | | 1603 dis'4 | |
1604 \change Staff = down | 1604 \change Staff = down |
1605 <fis, a cis>4 gis <f a d>2 | | 1605 <fis, a cis>4 gis <f a d>2 | |
1606 } | 1606 } |
1607 } | 1607 } |
1608 } | 1608 } |
1609 | 1609 |
1610 \new PianoStaff { | 1610 \new PianoStaff { |
1611 << | 1611 << |
1612 \context Staff = "up" { | 1612 \context Staff = "up" { |
1613 \accidentalStyle "default" | 1613 \accidentalStyle default |
1614 \musicA | 1614 \musicA |
1615 } | 1615 } |
1616 \context Staff = "down" { | 1616 \context Staff = "down" { |
1617 \accidentalStyle "default" | 1617 \accidentalStyle default |
1618 \musicB | 1618 \musicB |
1619 } | 1619 } |
1620 >> | 1620 >> |
1621 } | 1621 } |
1622 @end lilypond | 1622 @end lilypond |
1623 | 1623 |
1624 @item voice | 1624 @item voice |
1625 | 1625 |
1626 @cindex accidental style, voice (voice 臨時記号スタイル) | 1626 @cindex accidental style, voice (voice 臨時記号スタイル) |
1627 @cindex voice accidental style (voice 臨時記号スタイル) | 1627 @cindex voice accidental style (voice 臨時記号スタイル) |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1675 dis'4 | | 1675 dis'4 | |
1676 \change Staff = down | 1676 \change Staff = down |
1677 <fis, a cis>4 gis <f a d>2 | | 1677 <fis, a cis>4 gis <f a d>2 | |
1678 } | 1678 } |
1679 } | 1679 } |
1680 } | 1680 } |
1681 | 1681 |
1682 \new PianoStaff { | 1682 \new PianoStaff { |
1683 << | 1683 << |
1684 \context Staff = "up" { | 1684 \context Staff = "up" { |
1685 \accidentalStyle "voice" | 1685 \accidentalStyle voice |
1686 \musicA | 1686 \musicA |
1687 } | 1687 } |
1688 \context Staff = "down" { | 1688 \context Staff = "down" { |
1689 \accidentalStyle "voice" | 1689 \accidentalStyle voice |
1690 \musicB | 1690 \musicB |
1691 } | 1691 } |
1692 >> | 1692 >> |
1693 } | 1693 } |
1694 @end lilypond | 1694 @end lilypond |
1695 | 1695 |
1696 @item modern | 1696 @item modern |
1697 | 1697 |
1698 @cindex accidentals, modern style (modern 臨時記号スタイル) | 1698 @cindex accidentals, modern style (modern 臨時記号スタイル) |
1699 @cindex modern style accidentals (modern 臨時記号スタイル) | 1699 @cindex modern style accidentals (modern 臨時記号スタイル) |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1745 dis'4 | | 1745 dis'4 | |
1746 \change Staff = down | 1746 \change Staff = down |
1747 <fis, a cis>4 gis <f a d>2 | | 1747 <fis, a cis>4 gis <f a d>2 | |
1748 } | 1748 } |
1749 } | 1749 } |
1750 } | 1750 } |
1751 | 1751 |
1752 \new PianoStaff { | 1752 \new PianoStaff { |
1753 << | 1753 << |
1754 \context Staff = "up" { | 1754 \context Staff = "up" { |
1755 \accidentalStyle "modern" | 1755 \accidentalStyle modern |
1756 \musicA | 1756 \musicA |
1757 } | 1757 } |
1758 \context Staff = "down" { | 1758 \context Staff = "down" { |
1759 \accidentalStyle "modern" | 1759 \accidentalStyle modern |
1760 \musicB | 1760 \musicB |
1761 } | 1761 } |
1762 >> | 1762 >> |
1763 } | 1763 } |
1764 @end lilypond | 1764 @end lilypond |
1765 | 1765 |
1766 @item modern-cautionary | 1766 @item modern-cautionary |
1767 | 1767 |
1768 @cindex accidentals, modern cautionary style (modern-cautionary 臨時記号スタイル) | 1768 @cindex accidentals, modern cautionary style (modern-cautionary 臨時記号スタイル) |
1769 @cindex modern accidental style (modern 臨時記号スタイル) | 1769 @cindex modern accidental style (modern 臨時記号スタイル) |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1809 dis'4 | | 1809 dis'4 | |
1810 \change Staff = down | 1810 \change Staff = down |
1811 <fis, a cis>4 gis <f a d>2 | | 1811 <fis, a cis>4 gis <f a d>2 | |
1812 } | 1812 } |
1813 } | 1813 } |
1814 } | 1814 } |
1815 | 1815 |
1816 \new PianoStaff { | 1816 \new PianoStaff { |
1817 << | 1817 << |
1818 \context Staff = "up" { | 1818 \context Staff = "up" { |
1819 \accidentalStyle "modern-cautionary" | 1819 \accidentalStyle modern-cautionary |
1820 \musicA | 1820 \musicA |
1821 } | 1821 } |
1822 \context Staff = "down" { | 1822 \context Staff = "down" { |
1823 \accidentalStyle "modern-cautionary" | 1823 \accidentalStyle modern-cautionary |
1824 \musicB | 1824 \musicB |
1825 } | 1825 } |
1826 >> | 1826 >> |
1827 } | 1827 } |
1828 @end lilypond | 1828 @end lilypond |
1829 | 1829 |
1830 @item modern-voice | 1830 @item modern-voice |
1831 | 1831 |
1832 @cindex accidental style, modern (modern 臨時記号スタイル) | 1832 @cindex accidental style, modern (modern 臨時記号スタイル) |
1833 @cindex accidentals, modern (modern 臨時記号) | 1833 @cindex accidentals, modern (modern 臨時記号) |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1877 dis'4 | | 1877 dis'4 | |
1878 \change Staff = down | 1878 \change Staff = down |
1879 <fis, a cis>4 gis <f a d>2 | | 1879 <fis, a cis>4 gis <f a d>2 | |
1880 } | 1880 } |
1881 } | 1881 } |
1882 } | 1882 } |
1883 | 1883 |
1884 \new PianoStaff { | 1884 \new PianoStaff { |
1885 << | 1885 << |
1886 \context Staff = "up" { | 1886 \context Staff = "up" { |
1887 \accidentalStyle "modern-voice" | 1887 \accidentalStyle modern-voice |
1888 \musicA | 1888 \musicA |
1889 } | 1889 } |
1890 \context Staff = "down" { | 1890 \context Staff = "down" { |
1891 \accidentalStyle "modern-voice" | 1891 \accidentalStyle modern-voice |
1892 \musicB | 1892 \musicB |
1893 } | 1893 } |
1894 >> | 1894 >> |
1895 } | 1895 } |
1896 @end lilypond | 1896 @end lilypond |
1897 | 1897 |
1898 @cindex accidental style, cautionary, modern voice (modern-voice-cautionary 臨時記号
スタイル) | 1898 @cindex accidental style, cautionary, modern voice (modern-voice-cautionary 臨時記号
スタイル) |
1899 @cindex accidental style, modern voice cautionary (modern-voice-cautionary 臨時記号ス
タイル) | 1899 @cindex accidental style, modern voice cautionary (modern-voice-cautionary 臨時記号ス
タイル) |
1900 @cindex accidental style, voice, modern cautionary (modern-voice-cautionary 臨時記号
スタイル) | 1900 @cindex accidental style, voice, modern cautionary (modern-voice-cautionary 臨時記号
スタイル) |
1901 | 1901 |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1939 dis'4 | | 1939 dis'4 | |
1940 \change Staff = down | 1940 \change Staff = down |
1941 <fis, a cis>4 gis <f a d>2 | | 1941 <fis, a cis>4 gis <f a d>2 | |
1942 } | 1942 } |
1943 } | 1943 } |
1944 } | 1944 } |
1945 | 1945 |
1946 \new PianoStaff { | 1946 \new PianoStaff { |
1947 << | 1947 << |
1948 \context Staff = "up" { | 1948 \context Staff = "up" { |
1949 \accidentalStyle "modern-voice-cautionary" | 1949 \accidentalStyle modern-voice-cautionary |
1950 \musicA | 1950 \musicA |
1951 } | 1951 } |
1952 \context Staff = "down" { | 1952 \context Staff = "down" { |
1953 \accidentalStyle "modern-voice-cautionary" | 1953 \accidentalStyle modern-voice-cautionary |
1954 \musicB | 1954 \musicB |
1955 } | 1955 } |
1956 >> | 1956 >> |
1957 } | 1957 } |
1958 @end lilypond | 1958 @end lilypond |
1959 | 1959 |
1960 @item piano | 1960 @item piano |
1961 | 1961 |
1962 @cindex accidental style, piano (ピアノ臨時記号スタイル) | 1962 @cindex accidental style, piano (ピアノ臨時記号スタイル) |
1963 @cindex accidentals, piano (ピアノ臨時記号) | 1963 @cindex accidentals, piano (ピアノ臨時記号) |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2005 dis'4 | | 2005 dis'4 | |
2006 \change Staff = down | 2006 \change Staff = down |
2007 <fis, a cis>4 gis <f a d>2 | | 2007 <fis, a cis>4 gis <f a d>2 | |
2008 } | 2008 } |
2009 } | 2009 } |
2010 } | 2010 } |
2011 | 2011 |
2012 \new PianoStaff { | 2012 \new PianoStaff { |
2013 << | 2013 << |
2014 \context Staff = "up" { | 2014 \context Staff = "up" { |
2015 \accidentalStyle "piano" | 2015 \accidentalStyle piano |
2016 \musicA | 2016 \musicA |
2017 } | 2017 } |
2018 \context Staff = "down" { | 2018 \context Staff = "down" { |
2019 \musicB | 2019 \musicB |
2020 } | 2020 } |
2021 >> | 2021 >> |
2022 } | 2022 } |
2023 @end lilypond | 2023 @end lilypond |
2024 | 2024 |
2025 @item piano-cautionary | 2025 @item piano-cautionary |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2064 dis'4 | | 2064 dis'4 | |
2065 \change Staff = down | 2065 \change Staff = down |
2066 <fis, a cis>4 gis <f a d>2 | | 2066 <fis, a cis>4 gis <f a d>2 | |
2067 } | 2067 } |
2068 } | 2068 } |
2069 } | 2069 } |
2070 | 2070 |
2071 \new PianoStaff { | 2071 \new PianoStaff { |
2072 << | 2072 << |
2073 \context Staff = "up" { | 2073 \context Staff = "up" { |
2074 \accidentalStyle "piano-cautionary" | 2074 \accidentalStyle piano-cautionary |
2075 \musicA | 2075 \musicA |
2076 } | 2076 } |
2077 \context Staff = "down" { | 2077 \context Staff = "down" { |
2078 \musicB | 2078 \musicB |
2079 } | 2079 } |
2080 >> | 2080 >> |
2081 } | 2081 } |
2082 @end lilypond | 2082 @end lilypond |
2083 | 2083 |
2084 @item neo-modern | 2084 @item neo-modern |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2127 dis'4 | | 2127 dis'4 | |
2128 \change Staff = down | 2128 \change Staff = down |
2129 <fis, a cis>4 gis <f a d>2 | | 2129 <fis, a cis>4 gis <f a d>2 | |
2130 } | 2130 } |
2131 } | 2131 } |
2132 } | 2132 } |
2133 | 2133 |
2134 \new PianoStaff { | 2134 \new PianoStaff { |
2135 << | 2135 << |
2136 \context Staff = "up" { | 2136 \context Staff = "up" { |
2137 \accidentalStyle "neo-modern" | 2137 \accidentalStyle neo-modern |
2138 \musicA | 2138 \musicA |
2139 } | 2139 } |
2140 \context Staff = "down" { | 2140 \context Staff = "down" { |
2141 \accidentalStyle "neo-modern" | 2141 \accidentalStyle neo-modern |
2142 \musicB | 2142 \musicB |
2143 } | 2143 } |
2144 >> | 2144 >> |
2145 } | 2145 } |
2146 @end lilypond | 2146 @end lilypond |
2147 | 2147 |
2148 @item neo-modern-cautionary | 2148 @item neo-modern-cautionary |
2149 | 2149 |
2150 @cindex neo-modern-cautionary accidental style (neo-modern-cautionary 臨時記号スタイル) | 2150 @cindex neo-modern-cautionary accidental style (neo-modern-cautionary 臨時記号スタイル) |
2151 @cindex accidental style, neo-modern-cautionary (neo-modern-cautionary 臨時記号スタイル) | 2151 @cindex accidental style, neo-modern-cautionary (neo-modern-cautionary 臨時記号スタイル) |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2184 dis'4 | | 2184 dis'4 | |
2185 \change Staff = down | 2185 \change Staff = down |
2186 <fis, a cis>4 gis <f a d>2 | | 2186 <fis, a cis>4 gis <f a d>2 | |
2187 } | 2187 } |
2188 } | 2188 } |
2189 } | 2189 } |
2190 | 2190 |
2191 \new PianoStaff { | 2191 \new PianoStaff { |
2192 << | 2192 << |
2193 \context Staff = "up" { | 2193 \context Staff = "up" { |
2194 \accidentalStyle "neo-modern-cautionary" | 2194 \accidentalStyle neo-modern-cautionary |
2195 \musicA | 2195 \musicA |
2196 } | 2196 } |
2197 \context Staff = "down" { | 2197 \context Staff = "down" { |
2198 \accidentalStyle "neo-modern-cautionary" | 2198 \accidentalStyle neo-modern-cautionary |
2199 \musicB | 2199 \musicB |
2200 } | 2200 } |
2201 >> | 2201 >> |
2202 } | 2202 } |
2203 @end lilypond | 2203 @end lilypond |
2204 | 2204 |
2205 @item neo-modern-voice | 2205 @item neo-modern-voice |
2206 | 2206 |
2207 @cindex neo-modern-voice accidental style (neo-modern-voice 臨時記号スタイル) | 2207 @cindex neo-modern-voice accidental style (neo-modern-voice 臨時記号スタイル) |
2208 @cindex accidental style, neo-modern-voice (neo-modern-voice 臨時記号スタイル) | 2208 @cindex accidental style, neo-modern-voice (neo-modern-voice 臨時記号スタイル) |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2243 dis'4 | | 2243 dis'4 | |
2244 \change Staff = down | 2244 \change Staff = down |
2245 <fis, a cis>4 gis <f a d>2 | | 2245 <fis, a cis>4 gis <f a d>2 | |
2246 } | 2246 } |
2247 } | 2247 } |
2248 } | 2248 } |
2249 | 2249 |
2250 \new PianoStaff { | 2250 \new PianoStaff { |
2251 << | 2251 << |
2252 \context Staff = "up" { | 2252 \context Staff = "up" { |
2253 \accidentalStyle "neo-modern-voice" | 2253 \accidentalStyle neo-modern-voice |
2254 \musicA | 2254 \musicA |
2255 } | 2255 } |
2256 \context Staff = "down" { | 2256 \context Staff = "down" { |
2257 \accidentalStyle "neo-modern-voice" | 2257 \accidentalStyle neo-modern-voice |
2258 \musicB | 2258 \musicB |
2259 } | 2259 } |
2260 >> | 2260 >> |
2261 } | 2261 } |
2262 @end lilypond | 2262 @end lilypond |
2263 | 2263 |
2264 @item neo-modern-voice-cautionary | 2264 @item neo-modern-voice-cautionary |
2265 | 2265 |
2266 @cindex neo-modern-voice-cautionary accidental style (neo-modern-voice-cautionar
y 臨時記号スタイル) | 2266 @cindex neo-modern-voice-cautionary accidental style (neo-modern-voice-cautionar
y 臨時記号スタイル) |
2267 @cindex accidental style, neo-modern-voice-cautionary (neo-modern-voice-cautiona
ry 臨時記号スタイル) | 2267 @cindex accidental style, neo-modern-voice-cautionary (neo-modern-voice-cautiona
ry 臨時記号スタイル) |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2300 dis'4 | | 2300 dis'4 | |
2301 \change Staff = down | 2301 \change Staff = down |
2302 <fis, a cis>4 gis <f a d>2 | | 2302 <fis, a cis>4 gis <f a d>2 | |
2303 } | 2303 } |
2304 } | 2304 } |
2305 } | 2305 } |
2306 | 2306 |
2307 \new PianoStaff { | 2307 \new PianoStaff { |
2308 << | 2308 << |
2309 \context Staff = "up" { | 2309 \context Staff = "up" { |
2310 \accidentalStyle "neo-modern-voice-cautionary" | 2310 \accidentalStyle neo-modern-voice-cautionary |
2311 \musicA | 2311 \musicA |
2312 } | 2312 } |
2313 \context Staff = "down" { | 2313 \context Staff = "down" { |
2314 \accidentalStyle "neo-modern-voice-cautionary" | 2314 \accidentalStyle neo-modern-voice-cautionary |
2315 \musicB | 2315 \musicB |
2316 } | 2316 } |
2317 >> | 2317 >> |
2318 } | 2318 } |
2319 @end lilypond | 2319 @end lilypond |
2320 | 2320 |
2321 @item dodecaphonic | 2321 @item dodecaphonic |
2322 | 2322 |
2323 @cindex dodecaphonic accidental style (dodecaphonic 臨時記号スタイル) | 2323 @cindex dodecaphonic accidental style (dodecaphonic 臨時記号スタイル) |
2324 @cindex dodecaphonic style, neo-modern (neo-modern 12 音スタイル) | 2324 @cindex dodecaphonic style, neo-modern (neo-modern 12 音スタイル) |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2362 dis'4 | | 2362 dis'4 | |
2363 \change Staff = down | 2363 \change Staff = down |
2364 <fis, a cis>4 gis <f a d>2 | | 2364 <fis, a cis>4 gis <f a d>2 | |
2365 } | 2365 } |
2366 } | 2366 } |
2367 } | 2367 } |
2368 | 2368 |
2369 \new PianoStaff { | 2369 \new PianoStaff { |
2370 << | 2370 << |
2371 \context Staff = "up" { | 2371 \context Staff = "up" { |
2372 \accidentalStyle "dodecaphonic" | 2372 \accidentalStyle dodecaphonic |
2373 \musicA | 2373 \musicA |
2374 } | 2374 } |
2375 \context Staff = "down" { | 2375 \context Staff = "down" { |
2376 \accidentalStyle "dodecaphonic" | 2376 \accidentalStyle dodecaphonic |
2377 \musicB | 2377 \musicB |
2378 } | 2378 } |
2379 >> | 2379 >> |
2380 } | 2380 } |
2381 @end lilypond | 2381 @end lilypond |
2382 | 2382 |
2383 @item teaching | 2383 @item teaching |
2384 | 2384 |
2385 @cindex teaching accidental style (teaching 臨時記号スタイル) | 2385 @cindex teaching accidental style (teaching 臨時記号スタイル) |
2386 @cindex accidental style, teaching (teaching 臨時記号スタイル) | 2386 @cindex accidental style, teaching (teaching 臨時記号スタイル) |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2425 \change Staff = down | 2425 \change Staff = down |
2426 <fis, a cis>4 gis <f a d>2 | | 2426 <fis, a cis>4 gis <f a d>2 | |
2427 } | 2427 } |
2428 } | 2428 } |
2429 } | 2429 } |
2430 | 2430 |
2431 \new PianoStaff { | 2431 \new PianoStaff { |
2432 << | 2432 << |
2433 \context Staff = "up" { | 2433 \context Staff = "up" { |
2434 \key fis \minor | 2434 \key fis \minor |
2435 \accidentalStyle "teaching" | 2435 \accidentalStyle teaching |
2436 \musicA | 2436 \musicA |
2437 } | 2437 } |
2438 \context Staff = "down" { | 2438 \context Staff = "down" { |
2439 \key fis \minor | 2439 \key fis \minor |
2440 \accidentalStyle "teaching" | 2440 \accidentalStyle teaching |
2441 \musicB | 2441 \musicB |
2442 } | 2442 } |
2443 >> | 2443 >> |
2444 } | 2444 } |
2445 @end lilypond | 2445 @end lilypond |
2446 | 2446 |
2447 | 2447 |
2448 | 2448 |
2449 @item no-reset | 2449 @item no-reset |
2450 | 2450 |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2485 dis'4 | | 2485 dis'4 | |
2486 \change Staff = down | 2486 \change Staff = down |
2487 <fis, a cis>4 gis <f a d>2 | | 2487 <fis, a cis>4 gis <f a d>2 | |
2488 } | 2488 } |
2489 } | 2489 } |
2490 } | 2490 } |
2491 | 2491 |
2492 \new PianoStaff { | 2492 \new PianoStaff { |
2493 << | 2493 << |
2494 \context Staff = "up" { | 2494 \context Staff = "up" { |
2495 \accidentalStyle "no-reset" | 2495 \accidentalStyle no-reset |
2496 \musicA | 2496 \musicA |
2497 } | 2497 } |
2498 \context Staff = "down" { | 2498 \context Staff = "down" { |
2499 \accidentalStyle "no-reset" | 2499 \accidentalStyle no-reset |
2500 \musicB | 2500 \musicB |
2501 } | 2501 } |
2502 >> | 2502 >> |
2503 } | 2503 } |
2504 @end lilypond | 2504 @end lilypond |
2505 | 2505 |
2506 @item forget | 2506 @item forget |
2507 | 2507 |
2508 @cindex forget accidental style (forget 臨時記号スタイル) | 2508 @cindex forget accidental style (forget 臨時記号スタイル) |
2509 @cindex accidental style, forget (forget 臨時記号スタイル) | 2509 @cindex accidental style, forget (forget 臨時記号スタイル) |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2544 dis'4 | | 2544 dis'4 | |
2545 \change Staff = down | 2545 \change Staff = down |
2546 <fis, a cis>4 gis <f a d>2 | | 2546 <fis, a cis>4 gis <f a d>2 | |
2547 } | 2547 } |
2548 } | 2548 } |
2549 } | 2549 } |
2550 | 2550 |
2551 \new PianoStaff { | 2551 \new PianoStaff { |
2552 << | 2552 << |
2553 \context Staff = "up" { | 2553 \context Staff = "up" { |
2554 \accidentalStyle "forget" | 2554 \accidentalStyle forget |
2555 \musicA | 2555 \musicA |
2556 } | 2556 } |
2557 \context Staff = "down" { | 2557 \context Staff = "down" { |
2558 \accidentalStyle "forget" | 2558 \accidentalStyle forget |
2559 \musicB | 2559 \musicB |
2560 } | 2560 } |
2561 >> | 2561 >> |
2562 } | 2562 } |
2563 @end lilypond | 2563 @end lilypond |
2564 @end table | 2564 @end table |
2565 | 2565 |
2566 @seealso | 2566 @seealso |
2567 コード断片集: | 2567 コード断片集: |
2568 @rlsrnamed{Pitches,ピッチ} | 2568 @rlsrnamed{Pitches,ピッチ} |
(...skipping 25 matching lines...) Expand all Loading... |
2594 臨時記号の忠告的なキャンセルは 1 つ前の小節を見て行われます。@c | 2594 臨時記号の忠告的なキャンセルは 1 つ前の小節を見て行われます。@c |
2595 しかしながら、@code{\repeat volta N} セクションの後にくる | 2595 しかしながら、@code{\repeat volta N} セクションの後にくる |
2596 @code{\alternative} ブロックでは、@c | 2596 @code{\alternative} ブロックでは、@c |
2597 キャンセルの算出はその前に @emph{譜刻された} 小節ではなく、@c | 2597 キャンセルの算出はその前に @emph{譜刻された} 小節ではなく、@c |
2598 その前に @emph{演奏された} 小節を見て行われると演奏者は予想します。@c | 2598 その前に @emph{演奏された} 小節を見て行われると演奏者は予想します。@c |
2599 以下の例では、2 番目の差し替え小節の中にあるナチュラル @code{c} | 2599 以下の例では、2 番目の差し替え小節の中にあるナチュラル @code{c} |
2600 にナチュラル記号は必要ありません。 | 2600 にナチュラル記号は必要ありません。 |
2601 | 2601 |
2602 @lilypond[quote] | 2602 @lilypond[quote] |
2603 { | 2603 { |
2604 \accidentalStyle "modern" | 2604 \accidentalStyle modern |
2605 \time 2/4 | 2605 \time 2/4 |
2606 \repeat volta 2 { | 2606 \repeat volta 2 { |
2607 c'2 | 2607 c'2 |
2608 } | 2608 } |
2609 \alternative { | 2609 \alternative { |
2610 cis' | 2610 cis' |
2611 c' | 2611 c' |
2612 } | 2612 } |
2613 } | 2613 } |
2614 @end lilypond | 2614 @end lilypond |
2615 | 2615 |
2616 以下の方法で解決できます: | 2616 以下の方法で解決できます: |
2617 局部的に臨時記号スタイルを @code{forget} に変更する関数を定義します: | 2617 局部的に臨時記号スタイルを @code{forget} に変更する関数を定義します: |
2618 | 2618 |
2619 @lilypond[verbatim,quote] | 2619 @lilypond[verbatim,quote] |
2620 forget = #(define-music-function (parser location music) (ly:music?) #{ | 2620 forget = #(define-music-function (parser location music) (ly:music?) #{ |
2621 \accidentalStyle "forget" | 2621 \accidentalStyle forget |
2622 #music | 2622 #music |
2623 \accidentalStyle "modern" | 2623 \accidentalStyle modern |
2624 #}) | 2624 #}) |
2625 { | 2625 { |
2626 \accidentalStyle "modern" | 2626 \accidentalStyle modern |
2627 \time 2/4 | 2627 \time 2/4 |
2628 \repeat volta 2 { | 2628 \repeat volta 2 { |
2629 c'2 | 2629 c'2 |
2630 } | 2630 } |
2631 \alternative { | 2631 \alternative { |
2632 cis' | 2632 cis' |
2633 \forget c' | 2633 \forget c' |
2634 } | 2634 } |
2635 } | 2635 } |
2636 @end lilypond | 2636 @end lilypond |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2736 @cindex guitar note heads (ギターの符頭) | 2736 @cindex guitar note heads (ギターの符頭) |
2737 @cindex note head styles (符頭のスタイル) | 2737 @cindex note head styles (符頭のスタイル) |
2738 @cindex styles, note heads (符頭のスタイル) | 2738 @cindex styles, note heads (符頭のスタイル) |
2739 | 2739 |
2740 @funindex cross | 2740 @funindex cross |
2741 | 2741 |
2742 符頭を変更することができます: | 2742 符頭を変更することができます: |
2743 | 2743 |
2744 @lilypond[verbatim,quote,relative=2] | 2744 @lilypond[verbatim,quote,relative=2] |
2745 c4 b | 2745 c4 b |
2746 \override NoteHead #'style = #'cross | 2746 \override NoteHead.style = #'cross |
2747 c4 b | 2747 c4 b |
2748 \revert NoteHead #'style | 2748 \revert NoteHead.style |
2749 a b | 2749 a b |
2750 \override NoteHead #'style = #'harmonic | 2750 \override NoteHead.style = #'harmonic |
2751 a b | 2751 a b |
2752 \revert NoteHead #'style | 2752 \revert NoteHead.style |
2753 c4 d e f | 2753 c4 d e f |
2754 @end lilypond | 2754 @end lilypond |
2755 | 2755 |
2756 すべての符頭スタイルを調べるには、@ref{Note head styles} を参照してください。 | 2756 すべての符頭スタイルを調べるには、@ref{Note head styles} を参照してください。 |
2757 | 2757 |
2758 @code{cross} スタイルはさまざまな音楽的意図を表すために使用されます。@c | 2758 @code{cross} スタイルはさまざまな音楽的意図を表すために使用されます。@c |
2759 以下の定義済みコマンドは符頭を譜コンテキストとタブ譜コンテキストで変更し、@c | 2759 以下の定義済みコマンドは符頭を譜コンテキストとタブ譜コンテキストで変更し、@c |
2760 何らかの音楽的意味を表すために使用することができます: | 2760 何らかの音楽的意味を表すために使用することができます: |
2761 | 2761 |
2762 @lilypond[verbatim,quote,relative=2] | 2762 @lilypond[verbatim,quote,relative=2] |
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3035 @endpredefined | 3035 @endpredefined |
3036 | 3036 |
3037 @seealso | 3037 @seealso |
3038 コード断片集: | 3038 コード断片集: |
3039 @rlsrnamed{Pitches,ピッチ} | 3039 @rlsrnamed{Pitches,ピッチ} |
3040 | 3040 |
3041 内部リファレンス: | 3041 内部リファレンス: |
3042 @rinternals{Pitch_squash_engraver}, | 3042 @rinternals{Pitch_squash_engraver}, |
3043 @rinternals{Voice}, | 3043 @rinternals{Voice}, |
3044 @rinternals{RhythmicStaff} | 3044 @rinternals{RhythmicStaff} |
OLD | NEW |